10 lines
107 B
Go
10 lines
107 B
Go
//args: -Egofmt,goimports
|
|
package p
|
|
|
|
func goimports(a, b int) int {
|
|
if a != b {
|
|
return 1
|
|
}
|
|
return 2
|
|
}
|