Skip to content

Commit 0133d24

Browse files
committed
cmd/compile/internal/gc: don't ignore EOF in new parser
Fixes #13274. Fixes #13272. Change-Id: Ie67a2c4671ee2b49831898fff7677cd65d780942 Reviewed-on: https://go-review.googlesource.com/16972 Reviewed-by: Chris Manghane <[email protected]>
1 parent a20556b commit 0133d24

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/cmd/compile/internal/gc/parser.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func (p *parser) got(tok int32) bool {
8888
}
8989

9090
func (p *parser) want(tok int32) {
91-
if p.tok != EOF && !p.got(tok) {
91+
if !p.got(tok) {
9292
p.syntax_error("")
9393
p.advance()
9494
}
@@ -293,6 +293,8 @@ func (p *parser) file() {
293293
}
294294

295295
xtop = concat(xtop, p.xdcl_list())
296+
297+
p.want(EOF)
296298
}
297299

298300
// go.y:package

test/fixedbugs/issue13274.go

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// errorcheck
2+
3+
// Copyright 2015 The Go Authors. All rights reserved.
4+
// Use of this source code is governed by a BSD-style
5+
// license that can be found in the LICENSE file.
6+
7+
// Check that we don't ignore EOF.
8+
9+
package p
10+
11+
var f = func() { // ERROR "unexpected EOF"

0 commit comments

Comments
 (0)