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