2cdfe35e7 ^
7659739ca ^
c6398d408 ^
1
2 3
4 5 6
7 8
9
10
11
12
13
discard """ output: "caught!" """ # Test inheritance for exception matching: try: raise newException(OSError, "dummy message") except Exception: echo "caught!" except: echo "wtf!?" #OUT caught!