Denis Isaev d437ac8629 Implement auto-fixing for gofmt,goimports,misspell
Also, add more identifier marking patterns.
2019-02-17 20:31:31 +03:00

10 lines
93 B
Go

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