This commit is contained in:
Andreas Rumpf
2021-04-07 07:46:45 +02:00
committed by GitHub
parent 34c1c631bb
commit 444658fe58

View File

@@ -2962,7 +2962,8 @@ proc semExpr(c: PContext, n: PNode, flags: TExprFlags = {}): PNode =
of nkMixinStmt: discard
of nkBindStmt:
if c.p != nil:
c.p.localBindStmts.add n
if n.len > 0 and n[0].kind == nkSym:
c.p.localBindStmts.add n
else:
localError(c.config, n.info, "invalid context for 'bind' statement: " &
renderTree(n, {renderNoComments}))