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")
}
}