1
0
forked from Mirror/wren
Files
wren/test/this/this_in_method.wren
2013-12-21 19:25:09 -08:00

7 lines
103 B
Plaintext

class Foo {
bar { return this }
baz { return "baz" }
}
IO.write((new Foo).bar.baz) // expect: baz