mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
14 lines
142 B
Nim
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"]
|
|
|