summaryrefslogtreecommitdiffstats
path: root/src/test/ui/expr/if/if-let-arm-types.rs
blob: 1e8260a017da2b57d23842095944caf36fbe2536 (plain)
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    if let Some(b) = None {
        //~^ NOTE `if` and `else` have incompatible types
        ()
        //~^ NOTE expected because of this
    } else {
        1
    };
    //~^^ ERROR: `if` and `else` have incompatible types
    //~| NOTE expected `()`, found integer
}