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








                                     
                                             
 

                          
                               
         
 
                    
                         





             
discard """
  line: 23
  errormsg: "type mismatch"
"""

type
  TObj = object {.pure, inheritable.}
  TObjB = object of TObj
    a, b, c: string
    fn: proc (): int {.tags: [ReadIOEffect].}

  EIO2 = ref object of EIO

proc q() {.tags: [IoEffect].} =
  discard

proc raiser(): int =
  writeLine stdout, "arg"
  if true:
    q()

var o: TObjB
o.fn = raiser