mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: don't permit declarations in post statement of for loop
Report syntax error that was missed when moving to new parser. Fixes #19610. Change-Id: Ie5625f907a84089dc56fcccfd4f24df546042783 Reviewed-on: https://go-review.googlesource.com/38375 Reviewed-by: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
17570a9afb
commit
422c7fea70
2 changed files with 17 additions and 0 deletions
|
|
@ -1722,6 +1722,9 @@ func (p *parser) header(keyword token) (init SimpleStmt, cond Expr, post SimpleS
|
|||
p.want(_Semi)
|
||||
if p.tok != _Lbrace {
|
||||
post = p.simpleStmt(nil, false)
|
||||
if a, _ := post.(*AssignStmt); a != nil && a.Op == Def {
|
||||
p.syntax_error_at(a.Pos(), "cannot declare in post statement of for loop")
|
||||
}
|
||||
}
|
||||
} else if p.tok != _Lbrace {
|
||||
condStmt = p.simpleStmt(nil, false)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue