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