t2tables.nim 173 B

12345678910111213141516
  1. discard """
  2. action: compile
  3. """
  4. # bug #3669
  5. import tables
  6. type
  7. G[T] = object
  8. inodes: Table[int, T]
  9. rnodes: Table[T, int]
  10. var g: G[string]
  11. echo g.rnodes["foo"]