mlox/lox.t/variable/collide_with_parameter.lox

3 lines
90 B
Lox
Raw Permalink Normal View History

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