Fixes #17433; gensym callDef return in templ body (#17445)

This commit is contained in:
Saem Ghani
2021-03-21 16:33:37 -07:00
committed by GitHub
parent 5bed7d282a
commit 23fd098428
2 changed files with 17 additions and 1 deletions

View File

@@ -435,8 +435,8 @@ proc semTemplBody(c: var TemplCtx, n: PNode): PNode =
of nkLetSection: semTemplSomeDecl(c, n, skLet)
of nkFormalParams:
checkMinSonsLen(n, 1, c.c.config)
n[0] = semTemplBody(c, n[0])
semTemplSomeDecl(c, n, skParam, 1)
n[0] = semTemplBody(c, n[0])
of nkConstSection:
for i in 0..<n.len:
var a = n[i]

16
tests/template/t17433.nim Normal file
View File

@@ -0,0 +1,16 @@
# Inside template bodies, ensure return types referencing a param are replaced.
# This helps guarantee that return parameter analysis happens after argument
# analysis.
# bug #17433
from std/macros import expandMacros
proc bar(a: typedesc): a = default(a)
assert bar(float) == 0.0
assert bar(string) == ""
template main =
proc baz(a: typedesc): a = default(a)
assert baz(float) == 0.0
main()