Files
Nim/tests/exception/twrongexc.nim
2014-01-13 02:10:03 +01:00

14 lines
208 B
Nim

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