Files
wren/test/variable/local_collide_with_method_parameter.wren
T

6 lines
64 B
Plaintext
Raw Normal View History

class Foo {
bar(a) {
var a = "oops" // expect error
}
}