mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-19 07:21:19 +00:00
15
tests/stdlib/tstrtabs2.nim
Normal file
15
tests/stdlib/tstrtabs2.nim
Normal file
@@ -0,0 +1,15 @@
|
||||
discard """
|
||||
targets: "c cpp js"
|
||||
"""
|
||||
|
||||
import std/strtabs
|
||||
|
||||
macro m =
|
||||
var t = {"name": "John"}.newStringTable
|
||||
doAssert t["name"] == "John"
|
||||
|
||||
block:
|
||||
var t = {"name": "John"}.newStringTable
|
||||
doAssert t["name"] == "John"
|
||||
|
||||
m()
|
||||
Reference in New Issue
Block a user