mlox/lox.t/variable/collide_with_parameter.lox
2024-08-03 02:44:12 +02:00

3 lines
90 B
Lox

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