]> git.lizzy.rs Git - rust.git/blob - src/test/ui/if/if-let-arm-types.rs
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / if / if-let-arm-types.rs
1 fn main() {
2     if let Some(b) = None {
3         //~^ NOTE if and else have incompatible types
4         ()
5         //~^ NOTE expected because of this
6     } else {
7         1
8     };
9     //~^^ ERROR: if and else have incompatible types
10     //~| NOTE expected (), found integer
11 }