summary refs log blame commit diff stats
path: root/tests/objvariant/tadrdisc.nim
blob: 258fb42f37d60cce00aa454879c5c6c38dd2e525 (plain) (tree)
1
2
3
4
5


                      
                                        
   








                                                         
 

                            
 

            
discard """
  file: "tadrdisc.nim"
  line: 20
  errormsg: "type mismatch: got <TKind>"
"""
# Test that the address of a dicriminants cannot be taken

type
  TKind = enum ka, kb, kc
  TA = object
    case k: TKind
    of ka: x, y: int
    of kb: a, b: string
    of kc: c, d: float

proc setKind(k: var TKind) =
  k = kc

var a: TA
setKind(a.k)