summary refs log tree commit diff stats
path: root/tests/vm/t17039.nim
blob: f92c93f30a85479f33d8512ae06249db957244c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
type
  Obj1 = object
    case kind: bool
    of false:
      field: seq[int]
    else: discard

static:
  var obj1 = Obj1()
  obj1.field.add(@[])