2cdfe35e7 ^
7659739ca ^
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!