summary refs log tree commit diff stats
path: root/tests/run/texcsub.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/texcsub.nim')
-rwxr-xr-xtests/run/texcsub.nim17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/run/texcsub.nim b/tests/run/texcsub.nim
deleted file mode 100755
index 3dba357f9..000000000
--- a/tests/run/texcsub.nim
+++ /dev/null
@@ -1,17 +0,0 @@
-discard """
-  file: "texcsub.nim"
-  output: "caught!"
-"""
-# Test inheritance for exception matching:
-
-try:
-  raise newException(EOS, "dummy message")
-except E_Base:
-  echo "caught!"
-except: 
-  echo "wtf!?"
-  
-#OUT caught!
-
-
-