tblock1.nim 270 B

1234567891011121314151617
  1. discard """
  2. errormsg: "undeclared identifier: \'ha\'"
  3. file: "tblock1.nim"
  4. line: 14
  5. """
  6. # check for forward label and
  7. # for failure when label is not declared
  8. proc main =
  9. block endLess:
  10. write(stdout, "Muaahh!\N")
  11. break endLess
  12. break ha #ERROR
  13. main()