diff options
Diffstat (limited to 'tests/rodfiles/tgeneric2.nim')
-rw-r--r-- | tests/rodfiles/tgeneric2.nim | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/rodfiles/tgeneric2.nim b/tests/rodfiles/tgeneric2.nim deleted file mode 100644 index 552d60267..000000000 --- a/tests/rodfiles/tgeneric2.nim +++ /dev/null @@ -1,13 +0,0 @@ -discard """ - output: "abef" -""" - -import tables - -var x = initTable[int, string]() - -x[2] = "ab" -x[5] = "ef" - -echo x[2], x[5] - |