rlox/interpreter/tests/lox/if/dangling_else.lox

3 lines
168 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
// A dangling else binds to the right-most if.
if (true) if (false) print "bad"; else print "good"; // expect: good
if (false) if (true) print "bad"; else print "bad";