rust/tests/ui/match/non-first-arm-doesnt-match-expected-return-type.rs
Esteban Küber 55f8c66a60 Point at return type when it influences non-first match arm
When encountering code like

```rust
fn foo() -> i32 {
    match 0 {
        1 => return 0,
        2 => "",
        _ => 1,
    }
}
```

Point at the return type and not at the prior arm, as that arm has type
`!` which isn't influencing the arm corresponding to arm `2`.

Fix #78124.
2023-08-14 21:43:56 +00:00

22 lines
522 B
Rust

#![allow(unused)]
fn test(shouldwe: Option<u32>, shouldwe2: Option<u32>) -> u32 {
//~^ NOTE expected `u32` because of return type
match shouldwe {
Some(val) => {
match shouldwe2 {
Some(val) => {
return val;
}
None => (), //~ ERROR mismatched types
//~^ NOTE expected `u32`, found `()`
}
}
None => return 12,
}
}
fn main() {
println!("returned {}", test(None, Some(5)));
}