summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-83943.fixed
blob: e0d4ee29ebf881cc0f2d33f12883eb19ea9a5bc1 (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix

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