rlox/interpreter/tests/lox/variable/undefined_local.lox

3 lines
83 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
{
print notDefined; // expect runtime error: Undefined variable 'notDefined'.
}