1
0
forked from Mirror/wren
Files
wren/test/language/constructor/cannot_call_initializer.wren

9 lines
159 B
Plaintext

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