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

9 lines
235 B
Plaintext
Raw Permalink Normal View History

class Foo {
static write { System.print(__field) } // Compile a use of the field...
static init { __field = "value" } // ...before an assignment to it.
}
// But invoke them in the right order.
Foo.init
Foo.write // expect: value