Files
wren/test/setter/static.wren
T

8 lines
97 B
Plaintext
Raw Normal View History

class Foo {
static bar = value {
IO.print(value)
}
}
Foo.bar = "value" // expect: value