DEBSOURCES
Skip Quicknav
sources / nim / 2.2.0-1 / tests / generics / t22826.nim
12345678
import std/tables var a: Table[string, float] type Value*[T] = object table: Table[string, Value[T]] discard toTable({"a": Value[float]()})