Files
Nim/tests/template/t13515.nim
metagn 58e6d439d8 fix #13515 [backport] (#20315)
* fix #13515

* only compile test

* no idea why this PR is unlocking this

* don't rope in symchoices

* even more restrictive
2022-09-11 08:33:24 +02:00

17 lines
168 B
Nim

discard """
action: compile
"""
template test: bool = true
# compiles:
if not test:
echo "wtf"
# does not compile:
template x =
if not test:
echo "wtf"
x