mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
24 lines
529 B
Nim
24 lines
529 B
Nim
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")
|