Sign in
go
/
tools
/
2dc7ebab284bdfe6bb7ae8b77c3cccb0049e13ce
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
invertifcondition
/
boolean_fn.go
blob: 3fadab78b74070d6799862c254a4461cae76674d [
file
] [
log
] [
blame
]
package invertifcondition
import (
"fmt"
"os"
)
func BooleanFn() {
if os.IsPathSeparator('X') {
//@suggestedfix("if os.IsPathSeparator('X')", "refactor.rewrite", "")
fmt.Println("A")
} else {
fmt.Println("B")
}
}