rust/compiler/rustc_trait_selection/src
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
..
solve Remove constness from ImplSource::Param 2023-08-14 02:17:30 +00:00
traits Point at return type when it influences non-first match arm 2023-08-14 21:43:56 +00:00
errors.rs Migrate a trait selection error to use diagnostic translation 2023-08-07 05:26:38 +00:00
infer.rs Remove constness from TraitPredicate 2023-08-02 15:38:00 +00:00
lib.rs remove hash_drain_filter feature uses 2023-06-14 09:28:56 +02:00