Files
Nim/tests/tblock1.nim
2010-02-14 00:29:35 +01:00

12 lines
188 B
Nim

# check for forward label and
# for failure when label is not declared
proc main =
block endLess:
write(stdout, "Muaahh!\N")
break endLess
break ha #ERROR
main()