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








                                      
# bug #1920
import tables

var p: OrderedTable[tuple[a:int], int]
var q: OrderedTable[tuple[x:int], int]
for key in p.keys:
  echo key.a
for key in q.keys:
  echo key.x