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