summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-83943.rs
blob: 68d50c1775c7f2df30d0035becc6f86386cf8a7a (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix

fn main() {
    if true {
        "A".to_string()
    } else {
        "B" //~ ERROR `if` and `else` have incompatible types
    };
}