diff options
Diffstat (limited to 'tests/compile/tgeneric.nim')
-rw-r--r-- | tests/compile/tgeneric.nim | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/compile/tgeneric.nim b/tests/compile/tgeneric.nim deleted file mode 100644 index 8bda15c42..000000000 --- a/tests/compile/tgeneric.nim +++ /dev/null @@ -1,11 +0,0 @@ -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"] - - |