summary refs log blame commit diff stats
path: root/tests/effects/teffects2.nim
blob: 0fa789869e85cd0fd9a11c1e8c9514438dc2f384 (plain) (tree)
1
2
3
4
5
6
7
8
9
           
          
                                                          





                                     
 
                              
 

                             
                                        
                         

                
                                    
 
discard """
  line: 19
  errormsg: "can raise an unlisted exception: ref IOError"
"""

type
  TObj = object {.pure, inheritable.}
  TObjB = object of TObj
    a, b, c: string

  EIO2 = ref object of IOError

proc forw: int {.raises: [].}

proc lier(): int {.raises: [IOError].} =
  writeLine stdout, "arg"

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