Files
Nim/tests/compile/tbindoverload.nim
2012-05-04 01:58:54 +02:00

13 lines
218 B
Nim

import strtabs
template t*() =
block:
bind newStringTable
discard {"Content-Type": "text/html"}.newStringTable()
discard {:}.newStringTable
#discard {"Content-Type": "text/html"}.newStringTable()
t()