Files
wren/test/language/static_field/use_before_set.wren
T

9 lines
235 B
Plaintext
Raw Normal View History

2014-01-19 13:01:51 -08:00
class Foo {
2015-09-15 07:46:09 -07:00
static write { System.print(__field) } // Compile a use of the field...
2014-01-19 13:01:51 -08:00
static init { __field = "value" } // ...before an assignment to it.
}
// But invoke them in the right order.
Foo.init
Foo.write // expect: value