mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
9 lines
93 B
Go
9 lines
93 B
Go
//args: -Egofmt
|
|
package p
|
|
|
|
func gofmt(a, b int) int {
|
|
if a != b {
|
|
return 1
|
|
}
|
|
return 2
|
|
}
|