summary refs log tree commit diff stats
path: root/tests/exception/tunhandledexc.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/exception/tunhandledexc.nim')
-rw-r--r--tests/exception/tunhandledexc.nim23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/exception/tunhandledexc.nim b/tests/exception/tunhandledexc.nim
new file mode 100644
index 000000000..6ca311d38
--- /dev/null
+++ b/tests/exception/tunhandledexc.nim
@@ -0,0 +1,23 @@
+discard """
+  cmd: "nim $target -d:release $options $file"
+  outputsub: '''tunhandledexc.nim(15)    genErrors
+Error: unhandled exception: bla [ESomeOtherErr]'''
+  exitcode: "1"
+"""
+type
+  ESomething = object of Exception
+  ESomeOtherErr = object of Exception
+
+proc genErrors(s: string) =
+  if s == "error!":
+    raise newException(ESomething, "Test")
+  else:
+    raise newException(EsomeotherErr, "bla")
+
+when true:
+  try: discard except: discard
+
+  try:
+    genErrors("errssor!")
+  except ESomething:
+    echo("Error happened")