summary refs log tree commit diff stats
path: root/tests/accept/run/texcsub.nim
blob: 3dba357f9dff3c9bd97dd5096b88dfe74b0d2f36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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!