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

9 lines
163 B
Plaintext

class Foo {
construct new() {
System.print("ok")
}
}
var foo = Foo.new() // expect: ok
foo.new() // expect runtime error: Foo does not implement 'new()'.