mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 04:12:42 +00:00
4 lines
108 B
Lox
4 lines
108 B
Lox
|
|
fun foo(arg,
|
||
|
|
arg) { // Error at 'arg': Already a variable with this name in this scope.
|
||
|
|
"body";
|
||
|
|
}
|