2022-07-15 15:32:10 +02:00

10 lines
105 B
Go

//golangcitest:args -Egofmt
package p
func gofmt(a, b int) int {
if a != b {
return 1
}
return 2
}