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

10 lines
117 B
Plaintext

class Foo {
construct new() {
IO.print("Foo.new()")
}
}
class Bar is Foo {}
Bar.new() // expect: Foo.new()