blob: 8f827110cab5f79c54ba21c745bb59a8bdaf9688 (
plain) (
tree)
|
|
discard """
errormsg: "can raise an unlisted exception: ref IOError"
file: "io.nim"
"""
type
TObj {.pure, inheritable.} = object
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")
|