We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a20556b commit 0133d24Copy full SHA for 0133d24
src/cmd/compile/internal/gc/parser.go
@@ -88,7 +88,7 @@ func (p *parser) got(tok int32) bool {
88
}
89
90
func (p *parser) want(tok int32) {
91
- if p.tok != EOF && !p.got(tok) {
+ if !p.got(tok) {
92
p.syntax_error("")
93
p.advance()
94
@@ -293,6 +293,8 @@ func (p *parser) file() {
293
294
295
xtop = concat(xtop, p.xdcl_list())
296
+
297
+ p.want(EOF)
298
299
300
// go.y:package
test/fixedbugs/issue13274.go
@@ -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