mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-09 14:32:53 +00:00
14 lines
176 B
Nim
14 lines
176 B
Nim
discard """
|
|
output: "hi"
|
|
"""
|
|
|
|
# bug #2670
|
|
template testTemplate(b: bool): typed =
|
|
when b:
|
|
var a = "hi"
|
|
else:
|
|
var a = 5
|
|
echo a
|
|
|
|
testTemplate(true)
|