16 lines
190 B
Go
16 lines
190 B
Go
//golangcitest:args -Egofmt,goimports
|
|
//golangcitest:expected_exitcode 0
|
|
package p
|
|
|
|
import (
|
|
"os"
|
|
"fmt"
|
|
)
|
|
|
|
func goimports(a, b int) int {
|
|
if a != b {
|
|
return 1
|
|
}
|
|
return 2
|
|
}
|