diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/arc/tkeys_lent.nim | 17 | ||||
-rw-r--r-- | tests/stdlib/tgetfileinfo.nim | 1 | ||||
-rw-r--r-- | tests/stdlib/tos.nim | 1 |
3 files changed, 19 insertions, 0 deletions
diff --git a/tests/arc/tkeys_lent.nim b/tests/arc/tkeys_lent.nim new file mode 100644 index 000000000..2c92350b1 --- /dev/null +++ b/tests/arc/tkeys_lent.nim @@ -0,0 +1,17 @@ +discard """ + output: '''{"string": 2}''' + cmd: "nim c --gc:orc $file" +""" + +import tables + +proc use(x: int) = echo x + +proc main = + var tab = {"string": 1}.toTable + for keyAAA in tab.keys(): + template alias(): untyped = tab[keyAAA] + alias() = 2 + echo tab + +main() diff --git a/tests/stdlib/tgetfileinfo.nim b/tests/stdlib/tgetfileinfo.nim index 19de193e4..099ce1c22 100644 --- a/tests/stdlib/tgetfileinfo.nim +++ b/tests/stdlib/tgetfileinfo.nim @@ -1,5 +1,6 @@ discard """ output: "pcDir\npcFile\npcLinkToDir\npcLinkToFile\n" + joinable: false """ import os, strutils diff --git a/tests/stdlib/tos.nim b/tests/stdlib/tos.nim index d598a05b2..fedf2b3e3 100644 --- a/tests/stdlib/tos.nim +++ b/tests/stdlib/tos.nim @@ -22,6 +22,7 @@ __really_obscure_dir_name/test Raises Raises ''' + joinable: false """ # test os path creation, iteration, and deletion |