Files
Nim/tests/reject/tblock1.nim
2013-03-16 23:53:07 +01:00

19 lines
283 B
Nim

discard """
file: "tblock1.nim"
line: 14
errormsg: "undeclared identifier: \'ha\'"
"""
# 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()