Files
wren/test/language/constructor/cannot_be_static.wren
Bob Nystrom eff4485a56 Clean up definition syntax:
- Don't use "def" on constructors.
- Put "foreign" and "static" before "def".
2015-12-18 06:59:49 -08:00

5 lines
102 B
Plaintext

class Foo {
static construct new() {} // expect error
construct static new() {} // expect error
}