Files
wren/test/language/if/dangling_else.wren
T

4 lines
196 B
Plaintext
Raw Normal View History

2014-01-20 18:12:55 -08:00
// A dangling else binds to the right-most if.
2015-09-15 07:46:09 -07:00
if (true) if (false) System.print("bad") else System.print("good") // expect: good
if (false) if (true) System.print("bad") else System.print("bad")