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