Skip to content

Commit

Permalink
Fixes #17433; gensym callDef return in templ body (#17445)
Browse files Browse the repository at this point in the history
  • Loading branch information
saem authored Mar 21, 2021
1 parent 5bed7d2 commit 23fd098
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/semtempl.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
16 changes: 16 additions & 0 deletions tests/template/t17433.nim
Original file line number Diff line number Diff line change
@@ -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()

0 comments on commit 23fd098

Please sign in to comment.