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

3 lines
83 B
Lox

{
print notDefined; // expect runtime error: Undefined variable 'notDefined'.
}