summary refs log blame commit diff stats
path: root/tests/bind/tbindoverload.nim
blob: 6f5bb339eae43c577407c2789a7c073a2c0c51b3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                          
import strtabs

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

    discard {:}.newStringTable

#discard {"Content-Type": "text/html"}.newStringTable()

t()