mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
* fix #13515 * only compile test * no idea why this PR is unlocking this * don't rope in symchoices * even more restrictive
This commit is contained in:
@@ -250,8 +250,14 @@ proc semTemplSymbol(c: PContext, n: PNode, s: PSym; isField: bool): PNode =
|
||||
of skUnknown:
|
||||
# Introduced in this pass! Leave it as an identifier.
|
||||
result = n
|
||||
of OverloadableSyms:
|
||||
of OverloadableSyms-{skTemplate,skMacro}:
|
||||
result = symChoice(c, n, s, scOpen, isField)
|
||||
of skTemplate, skMacro:
|
||||
result = symChoice(c, n, s, scOpen, isField)
|
||||
if result.kind == nkSym:
|
||||
# template/macro symbols might need to be semchecked again
|
||||
# prepareOperand etc don't do this without setting the type to nil
|
||||
result.typ = nil
|
||||
of skGenericParam:
|
||||
if isField and sfGenSym in s.flags: result = n
|
||||
else: result = newSymNodeTypeDesc(s, c.idgen, n.info)
|
||||
|
||||
16
tests/template/t13515.nim
Normal file
16
tests/template/t13515.nim
Normal file
@@ -0,0 +1,16 @@
|
||||
discard """
|
||||
action: compile
|
||||
"""
|
||||
|
||||
template test: bool = true
|
||||
|
||||
# compiles:
|
||||
if not test:
|
||||
echo "wtf"
|
||||
|
||||
# does not compile:
|
||||
template x =
|
||||
if not test:
|
||||
echo "wtf"
|
||||
|
||||
x
|
||||
Reference in New Issue
Block a user