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

5 lines
62 B
Lox

if (false) {
print notDefined;
}
print "ok"; // expect: ok