summary refs log tree commit diff stats
path: root/tests/effects/teffects1.nim
blob: ea1ea7b211fe828d50e5b6b5122fe3a3bb9eda82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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].} =
  writeln stdout, "arg"

proc forw: int =
  raise newException(IOError, "arg")