Files
wren/test/language/variable/duplicate_parameter.wren

7 lines
69 B
Plaintext
Raw Permalink Normal View History

2013-11-09 11:38:01 -08:00
class Foo {
bar(arg,
arg) { // expect error
"body"
}
}