13 lines
196 B
Go
13 lines
196 B
Go
// args: -Egoimports
|
|
package testdata
|
|
|
|
import (
|
|
"fmt" // ERROR "File is not `goimports`-ed"
|
|
"github.com/golangci/golangci-lint/pkg/config"
|
|
)
|
|
|
|
func Bar() {
|
|
fmt.Print("x")
|
|
_ = config.Config{}
|
|
}
|