blob: b51f3aa189f4b7ed2d7fe7f09ecd6fa5430e34bc [file] [log] [blame]
//@ run-rustfix
fn main() {
if true {
"A".to_string()
} else {
"B" //~ ERROR `if` and `else` have incompatible types
};
}