Files
wren/test/language/method/empty_block.wren
T

7 lines
89 B
Plaintext
Raw Normal View History

2013-12-29 10:46:21 -08:00
class Foo {
2015-09-01 08:16:04 -07:00
construct new() {}
2013-12-29 10:46:21 -08:00
bar {}
}
2015-09-15 07:46:09 -07:00
System.print(Foo.new().bar) // expect: null