rlox/interpreter/tests/lox/variable/collide_with_parameter.lox
2024-09-01 19:15:55 +02:00

3 lines
90 B
Lox

fun foo(a) {
var a; // Error at 'a': Already a variable with this name in this scope.
}