Files
Nim/tests/template/twhenintemplates.nim
flywind 98cec6b692 closes #3670 [add testcase for #3670] (#15808)
* add testcase

* Update tests/template/twhenintemplates.nim

Co-authored-by: Clyybber <darkmine956@gmail.com>
2020-11-01 19:53:00 +01:00

12 lines
165 B
Nim

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