You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#126558 - jieyouxu:caller-chooses-ty, r=fmease
hir_typeck: be more conservative in making "note caller chooses ty param" note
In rust-lang#122195 I added a "caller chooses ty for type param" note for when the return expression type a.k.a. found type does not match the expected return type.
rust-lang#126547 found that this note was confusing when the found return type *contains* the expected type, e.g.
```rs
fn f<T>(t: &T) -> T {
t
}
```
because the found return type `&T` will *always* be different from the expected return type `T`, so the note was needlessly redundant and confusing.
This PR addresses that by not making the note if the found return type contains the expected return type.
r? ``@fmease`` (since you reviewed the original PR)
Fixesrust-lang#126547
Copy file name to clipboardexpand all lines: tests/ui/return/return-ty-mismatch-note.rs
+10-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
-
// Checks existence of a note for "a caller chooses ty for ty param" upon return ty mismatch.
1
+
// Checks existence or absence of a note for "a caller chooses ty for ty param" upon return ty
2
+
// mismatch.
2
3
3
4
fnf<T>() -> (T,){
4
5
(0,)//~ ERROR mismatched types
@@ -14,6 +15,14 @@ fn h() -> u8 {
14
15
0u8
15
16
}
16
17
18
+
// This case was reported in <https://github.com/rust-lang/rust/issues/126547> where it doesn't
19
+
// make sense to make the "note caller chooses ty for ty param" note if the found type contains
0 commit comments