diff options
author | Zahary Karadjov <zahary@gmail.com> | 2012-06-03 20:37:56 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2012-06-03 20:37:56 +0300 |
commit | bb850aafec622401d26e052cbd8cd6a7fef36156 (patch) | |
tree | 0845230fa3eeab2331fa022caa6dc93506da5ec0 /tests/run | |
parent | 3ce400bb00363a4b207ba966937d26c746d25e1b (diff) | |
download | Nim-bb850aafec622401d26e052cbd8cd6a7fef36156.tar.gz |
codegen for C++ exceptions
Diffstat (limited to 'tests/run')
-rw-r--r-- | tests/run/texceptions.nim | 2 |
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 |