summary refs log blame commit diff stats
path: root/tests/template/twhen_gensym.nim
blob: f1a8d0eb74bcf895bdb4b060c01c041831d336aa (plain) (tree)
1
2
3
4
5
6




              
                                       






                    
discard """
  output: "hi"
"""

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

testTemplate(true)