
ed64e33c8c8bc9a919e2b85a1a08225b5ae59d70. Also add tests for local mode of goimports and do refactoring of tests.
11 lines
141 B
Go
11 lines
141 B
Go
//args: -Egochecknoinits
|
|
package testdata
|
|
|
|
import "fmt"
|
|
|
|
func init() { // ERROR "don't use `init` function"
|
|
fmt.Println()
|
|
}
|
|
|
|
func Init() {}
|