Files
wren/test/variable/duplicate_parameter.wren
T

7 lines
69 B
Plaintext
Raw Normal View History

class Foo {
bar(arg,
arg) { // expect error
"body"
}
}