mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
22 lines
365 B
Nim
22 lines
365 B
Nim
discard """
|
|
line: 1855
|
|
file: "system.nim"
|
|
errormsg: "can raise an unlisted exception: ref EIO"
|
|
"""
|
|
|
|
type
|
|
TObj = object {.pure, inheritable.}
|
|
TObjB = object of TObj
|
|
a, b, c: string
|
|
|
|
EIO2 = ref object of EIO
|
|
|
|
proc forw: int {. .}
|
|
|
|
proc lier(): int {.raises: [EIO2].} =
|
|
writeln stdout, "arg"
|
|
|
|
proc forw: int =
|
|
raise newException(EIO, "arg")
|
|
|