Files
wren/test/field/use_before_set.wren
2013-12-21 19:25:09 -08:00

10 lines
233 B
Plaintext

class Foo {
write { IO.write(_field) } // Compile a use of the field...
init { _field = "value" } // ...before an assignment to it.
}
var foo = new Foo
// But invoke them in the right order.
foo.init
foo.write // expect: value