summary refs log tree commit diff stats
path: root/tests/tblock1.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tblock1.nim')
-rwxr-xr-xtests/tblock1.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/tblock1.nim b/tests/tblock1.nim
deleted file mode 100755
index 0bea7ae7f..000000000
--- a/tests/tblock1.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-# 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()