summary refs log tree commit diff stats
path: root/tests/generics/t22826.nim
blob: 914d4243a2de3f46040102bf1a4062f189739111 (plain) (blame)
1
2
3
4
5
6
7
8
import std/tables

var a: Table[string, float]

type Value*[T] = object
  table: Table[string, Value[T]]

discard toTable({"a": Value[float]()})