mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-08 12:28:44 -04:00
16 lines
212 B
Go
16 lines
212 B
Go
|
//args: -Egci
|
||
|
package testdata
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/golangci/golangci-lint/pkg/config"
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
func GoimportsLocalTest() {
|
||
|
fmt.Print("x")
|
||
|
_ = config.Config{}
|
||
|
_ = errors.New("")
|
||
|
}
|