Files
wren/test/language/variable/local_outside_method.wren
T

23 lines
307 B
Plaintext
Raw Normal View History

2015-10-05 07:44:51 -07:00
{
var foo = "variable"
class Foo {
construct new() {}
foo { "method" }
method {
System.print(foo)
}
static foo { "class method" }
static classMethod {
System.print(foo)
}
}
Foo.new().method // expect: method
Foo.classMethod // expect: class method
}