Files
wren/test/language/implicit_receiver/block_argument.wren
2015-11-27 21:17:34 -08:00

12 lines
149 B
Plaintext

class Foo {
construct new() {
method { "block" }
}
method(a) {
System.print("method %(a())")
}
}
Foo.new() // expect: method block