summary refs log tree commit diff stats
path: root/tests/tblock1.nim
blob: 0bea7ae7f9532b084cd26b1c6ecdc8dc0f5418f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# 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()