mlox/lox.t/variable/duplicate_parameter.lox

4 lines
108 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
fun foo(arg,
arg) { // Error at 'arg': Already a variable with this name in this scope.
"body";
}