blob: def97164f34fcb95b00f50c8076bc068b674e264 [file] [log] [blame]
package invertifcondition
import (
"fmt"
)
func NotBoolean() {
b := true
if !b { //@suggestedfix("if !b", "refactor.rewrite", "")
fmt.Println("A")
} else {
fmt.Println("B")
}
}