summary refs log tree commit diff stats
path: root/tests/template/twhenintemplates.nim
blob: 6fded856de64594dedf21b20e2d8196bb4e6ad3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# bug #3670

template someTempl(someConst: bool) =
  when someConst:
    var a : int
  if true:
    when not someConst:
      var a : int
    a = 5

someTempl(true)