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

4 lines
108 B
Lox

{
var a = "value";
var a = "other"; // Error at 'a': Already a variable with this name in this scope.
}