mirror of
https://github.com/golang/go
synced 2024-11-05 16:16:11 -07:00
d390283ff4
- ignore them, if they don't. - added tests Fixes #18393. Change-Id: I13f87b81ac6b9138ab5031bb3dd6bebc4c548156 Reviewed-on: https://go-review.googlesource.com/37020 Run-TryBot: Robert Griesemer <gri@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
25 lines
542 B
Go
25 lines
542 B
Go
// errorcheck
|
|
|
|
// Copyright 2017 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.
|
|
|
|
// Test that compiler directives are ignored if they
|
|
// don't start at the beginning of the line.
|
|
|
|
package p
|
|
|
|
//line issue18393.go:20
|
|
import 42 // error on line 20
|
|
|
|
|
|
/* //line not at start of line: ignored */ //line issue18393.go:30
|
|
var x // error on line 24, not 30
|
|
|
|
|
|
// ERROR "missing import path"
|
|
|
|
|
|
|
|
// ERROR "syntax error: unexpected newline, expecting type"
|