diff --git a/src/cmd/compile/internal/gc/parser.go b/src/cmd/compile/internal/gc/parser.go index d2b382fdfc4..1d24b271e07 100644 --- a/src/cmd/compile/internal/gc/parser.go +++ b/src/cmd/compile/internal/gc/parser.go @@ -88,7 +88,7 @@ func (p *parser) got(tok int32) bool { } func (p *parser) want(tok int32) { - if p.tok != EOF && !p.got(tok) { + if !p.got(tok) { p.syntax_error("") p.advance() } @@ -293,6 +293,8 @@ func (p *parser) file() { } xtop = concat(xtop, p.xdcl_list()) + + p.want(EOF) } // go.y:package diff --git a/test/fixedbugs/issue13274.go b/test/fixedbugs/issue13274.go new file mode 100644 index 00000000000..a93c63fb915 --- /dev/null +++ b/test/fixedbugs/issue13274.go @@ -0,0 +1,11 @@ +// errorcheck + +// Copyright 2015 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Check that we don't ignore EOF. + +package p + +var f = func() { // ERROR "unexpected EOF" \ No newline at end of file