blob: a47f1ca469e0605b0e26c6a0758532266275b411 [file] [log] [blame]
-- suggestedfix_dont_remove_parens_11_3 --
package invertifcondition
import (
"fmt"
)
func DontRemoveParens() {
a := false
b := true
if (a ||
b) {
fmt.Println("B")
} else { //@suggestedfix("b", "refactor.rewrite", "")
fmt.Println("A")
}
}