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