rlox/interpreter/tests/lox/variable/duplicate_parameter.lox

4 lines
108 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
fun foo(arg,
arg) { // Error at 'arg': Already a variable with this name in this scope.
"body";
}