mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
16 lines
173 B
Nim
16 lines
173 B
Nim
discard """
|
|
action: compile
|
|
"""
|
|
|
|
# bug #3669
|
|
|
|
import tables
|
|
|
|
type
|
|
G[T] = object
|
|
inodes: Table[int, T]
|
|
rnodes: Table[T, int]
|
|
|
|
var g: G[string]
|
|
echo g.rnodes["foo"]
|