summary refs log tree commit diff stats
path: root/tests/accept/run/tfinally3.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tfinally3.nim')
-rwxr-xr-xtests/accept/run/tfinally3.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/accept/run/tfinally3.nim b/tests/accept/run/tfinally3.nim
deleted file mode 100755
index e8d81c893..000000000
--- a/tests/accept/run/tfinally3.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-# Test break in try statement:
-
-proc main: bool = 
-  while true:
-    try:
-      return true
-    finally:
-      break
-  return false
-
-echo main() #OUT false
-