Files
Nim/tests/generics/t2tables.nim
Andreas Rumpf 06d4131ce1 fixes #3669
2016-03-01 23:25:46 +01:00

14 lines
142 B
Nim

# bug #3669
import tables
type
G[T] = object
inodes: Table[int, T]
rnodes: Table[T, int]
var g: G[string]
echo g.rnodes["foo"]