blob: ef76c9130b1ef01bba816c10fdb14da0797961f3 (
plain) (
tree)
|
|
discard """
file: "system.nim"
errormsg: "can raise an unlisted exception: ref IOError"
"""
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")
|