What version of Go are you using (go version)?
$ go version
go version go1.16.14 linux/amd64
Does this issue reproduce with the latest release?
Not sure.
What did you do?
go fmted on
package main
import "fmt"
func main() {
a, b, c := 3, 4, 5
if (a*a)+(b*b) == (c * c) {
fmt.Println("it is!")
}
}
https://go.dev/play/p/BhOt_NMASo9
What did you expect to see?
Space around * in (c * c) to be removed
What did you see instead?
They aren't