Files
Nim/tests/effects/teffects1.nim
2018-12-11 21:23:21 +01:00

20 lines
367 B
Nim

discard """
errormsg: "can raise an unlisted exception: ref IOError"
file: "system.nim"
"""
type
TObj = object {.pure, inheritable.}
TObjB = object of TObj
a, b, c: string
IO2Error = ref object of IOError
proc forw: int {. .}
proc lier(): int {.raises: [IO2Error].} =
writeLine stdout, "arg"
proc forw: int =
raise newException(IOError, "arg")