mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-03 04:24:45 +00:00
17
tests/arc/tkeys_lent.nim
Normal file
17
tests/arc/tkeys_lent.nim
Normal file
@@ -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()
|
||||
Reference in New Issue
Block a user