mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 12:37:46 +00:00
17 lines
270 B
Nim
17 lines
270 B
Nim
discard """
|
|
errormsg: "undeclared identifier: \'ha\'"
|
|
file: "tblock1.nim"
|
|
line: 14
|
|
"""
|
|
# 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()
|