mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
18 lines
225 B
Nim
18 lines
225 B
Nim
discard """
|
|
file: "texcsub.nim"
|
|
output: "caught!"
|
|
"""
|
|
# Test inheritance for exception matching:
|
|
|
|
try:
|
|
raise newException(EOS, "dummy message")
|
|
except E_Base:
|
|
echo "caught!"
|
|
except:
|
|
echo "wtf!?"
|
|
|
|
#OUT caught!
|
|
|
|
|
|
|