summary refs log tree commit diff stats
path: root/tests/run
diff options
context:
space:
mode:
authorZahary Karadjov <zahary@gmail.com>2012-06-03 20:37:56 +0300
committerZahary Karadjov <zahary@gmail.com>2012-06-03 20:37:56 +0300
commitbb850aafec622401d26e052cbd8cd6a7fef36156 (patch)
tree0845230fa3eeab2331fa022caa6dc93506da5ec0 /tests/run
parent3ce400bb00363a4b207ba966937d26c746d25e1b (diff)
downloadNim-bb850aafec622401d26e052cbd8cd6a7fef36156.tar.gz
codegen for C++ exceptions
Diffstat (limited to 'tests/run')
-rw-r--r--tests/run/texceptions.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/texceptions.nim b/tests/run/texceptions.nim
index 2e6101c2a..69b2d0f6a 100644
--- a/tests/run/texceptions.nim
+++ b/tests/run/texceptions.nim
@@ -37,7 +37,7 @@ proc reraise_in_except =
     echo "BEFORE"
     raise newException(EIO, "")
 
-  except:
+  except EIO:
     echo "EXCEPT"
     raise