Files
wren/test/language/constructor/cannot_be_infix.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

6 lines
80 B
Plaintext

class Foo {
construct +(value) { // expect error
System.print("ok")
}
}