rlox/interpreter/tests/lox/variable/use_global_in_initializer.lox

3 lines
54 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
var a = "value";
var a = a;
2024-09-01 20:47:52 +02:00
print a; // expect: error