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