mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
10 lines
153 B
Go
10 lines
153 B
Go
//golangcitest:args -Egochecknoinits
|
|
package testdata
|
|
|
|
import "fmt"
|
|
|
|
func init() { // ERROR "don't use `init` function"
|
|
fmt.Println()
|
|
}
|
|
|
|
func Init() {}
|