summary refs log tree commit diff stats
path: root/tests/compile/tgeneric.nim
blob: 8bda15c4273854d6fe97397bb723326256b62b51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import tables

type
  TX = TTable[string, int]

proc foo(models: seq[TTable[string, float]]): seq[float] =
  result = @[]
  for model in models.items:
    result.add model["foobar"]