summary refs log tree commit diff stats
path: root/tests/template/twhen_gensym.nim
blob: d84ee6f0364cc1d12c4078d0e220375184468677 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
  output: "hi"
"""

# bug #2670
template testTemplate(b: bool): stmt =
    when b:
        var a = "hi"
    else:
        var a = 5
    echo a

testTemplate(true)