Sign in
go
/
tools
/
2dc7ebab284bdfe6bb7ae8b77c3cccb0049e13ce
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
invertifcondition
/
dont_remove_parens.go
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")
}
}