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

4 lines
196 B
Plaintext
Raw Normal View History

// A dangling else binds to the right-most if.
if (true) if (false) System.print("bad") else System.print("good") // expect: good
if (false) if (true) System.print("bad") else System.print("bad")