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