Sign in
go
/
tools
/
76f78597112f06eeb07cc891e2976db2502a49e7
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
invertifcondition
/
remove_parens.go
blob: 6d3b6ab32c3db8f7660b822c18e42b3b1d74f8f6 [
file
] [
log
] [
blame
]
package invertifcondition
import (
"fmt"
)
func RemoveParens() {
b := true
if !(b) {
//@suggestedfix("if", "refactor.rewrite", "")
fmt.Println("A")
} else {
fmt.Println("B")
}
}