1
0
forked from Mirror/wren
Files
wren/test/variable/local_collide_with_method_parameter.wren
2013-11-30 18:28:01 -08:00

6 lines
64 B
Plaintext

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