diff options
Diffstat (limited to 'tests/run/texcsub.nim')
-rwxr-xr-x | tests/run/texcsub.nim | 17 |
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! - - - |