Files
wren/test/language/method/empty_block.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

7 lines
93 B
Plaintext

class Foo {
construct new() {}
def bar {}
}
System.print(Foo.new().bar) // expect: null