summary refs log blame commit diff stats
path: root/tests/tblock1.nim
blob: 729bfd3e77627aff05b1c0f7bb0e06446d2c05b6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                                         








                               
# check for forward label and
# for failure when label is not declared

proc main =
  block endLess:
    break endLess
    write(stdout, "Muaahh!\N")


  break ha #ERROR

main()