Skip to content

Commit 662ab8b

Browse files
committed
cmd/compile/internal/gc: add dropped line correction again
The line correction when reporting a missing package clause was removed before since it wasn't clear that it was needed. Added it again because of issue 13267. No explicit test case has been added to test/fixedbugs because it would require a file that contains a single byte and such a file doesn't fit the existing test harness. Instead documented the problematic line in the parser for future reference. Fixes #13267. Change-Id: I590fe8f358042aab73acf16c2ed9567872b174f4 Reviewed-on: https://go-review.googlesource.com/16975 Reviewed-by: Chris Manghane <[email protected]>
1 parent 48a1466 commit 662ab8b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ func (p *parser) package_() {
307307
mkpackage(p.sym().Name)
308308
p.want(';')
309309
} else {
310+
prevlineno = lineno // see issue #13267
310311
p.syntax_error("package statement must be first")
311312
errorexit()
312313
}

0 commit comments

Comments
 (0)