mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
14 lines
204 B
Nim
14 lines
204 B
Nim
discard """
|
|
file: "twrongexc.nim"
|
|
outputsub: "Error: unhandled exception: [ValueError]"
|
|
exitcode: "1"
|
|
"""
|
|
try:
|
|
raise newException(ValueError, "")
|
|
except OverflowError:
|
|
echo("Error caught")
|
|
|
|
|
|
|
|
|