summary refs log tree commit diff stats
path: root/tests/run/twrongexc.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/twrongexc.nim')
-rwxr-xr-xtests/run/twrongexc.nim13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/run/twrongexc.nim b/tests/run/twrongexc.nim
deleted file mode 100755
index 755f7d979..000000000
--- a/tests/run/twrongexc.nim
+++ /dev/null
@@ -1,13 +0,0 @@
-discard """
-  file: "twrongexc.nim"
-  outputsub: "Error: unhandled exception:  [EInvalidValue]"
-  exitcode: "1"
-"""
-try:
-  raise newException(EInvalidValue, "")
-except EOverflow:
-  echo("Error caught")
-  
-
-
-