mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
19 lines
283 B
Nim
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()
|
|
|
|
|