summary refs log tree commit diff stats
path: root/tests/tuples/tgeneric_tuple.nim
blob: 32f0815964f77906d1c801471e96e01f58df5d2f (plain) (blame)
1
2
3
4
5
6
7
8
9
# bug #2121

type
  Item[K,V] = tuple
    key: K
    value: V

var q = newseq[Item[int,int]](0)
let (x,y) = q[0]