Sasha Melentyev a9dc1ce178
dev: change format like function without args (#3012)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
2022-07-24 18:24:01 +02:00

12 lines
93 B
Go

package abspath
import "fmt"
func f() {
if true {
return
} else {
fmt.Print("")
}
}