Files
Nim/tests/exception/twrongexc.nim
2014-08-31 17:23:35 +02:00

14 lines
206 B
Nim

discard """
file: "twrongexc.nim"
outputsub: "Error: unhandled exception: [ValueError]"
exitcode: "1"
"""
try:
raise newException(ValueError, "")
except OverflowError:
echo("Error caught")