mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
18 lines
193 B
Nim
18 lines
193 B
Nim
|
|
# bug #1700
|
|
import tables
|
|
|
|
type
|
|
E* = enum
|
|
eX
|
|
eY
|
|
T* = object
|
|
case kind: E
|
|
of eX:
|
|
xVal: Table[string, T]
|
|
of eY:
|
|
nil
|
|
|
|
proc p*(x: Table[string, T]) =
|
|
discard
|