summary refs log blame commit diff stats
path: root/tests/accept/run/tvariantasgn.nim
blob: 46cc23dd1d60caef7ebd0065c5f46e93c1680e83 (plain) (tree)
1
2
3
4



                          






















                               
                

 
discard """
  file: "tvariantasgn.nim"
  output: "came here"
"""
#BUG
type
  TAnyKind = enum
    nkInt,
    nkFloat,
    nkString
  TAny = object
    case kind: TAnyKind
    of nkInt: intVal: int
    of nkFloat: floatVal: float
    of nkString: strVal: string

var s: TAny
s.kind = nkString
s.strVal = "test"

var nr: TAny
nr.kind = nkint
nr.intVal = 78


# s = nr # works
nr = s # fails!
echo "came here"