Skip to content

Commit a29ac16

Browse files
jieyouxusladyn98kvverti
committed
Note that type param is chosen by caller when suggesting return impl Trait
Revives #112088 and #104755. Co-authored-by: sladynnunes <[email protected]> Co-authored-by: Thalia Nero <[email protected]>
1 parent 74acabe commit a29ac16

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/suggestions.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
889889
self.dcx(),
890890
errors::ExpectedReturnTypeLabel::Other { span: hir_ty.span, expected },
891891
);
892-
self.try_suggest_return_impl_trait(err, expected, ty, fn_id);
892+
self.try_suggest_return_impl_trait(err, expected, found, fn_id);
893893
return true;
894894
}
895895
}
@@ -1010,6 +1010,11 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
10101010
format!("impl {all_bounds_str}"),
10111011
Applicability::MaybeIncorrect,
10121012
);
1013+
1014+
err.note(format!(
1015+
"the caller chooses a type for `{}` which can be different from `{}`",
1016+
expected_ty_as_param.name, found
1017+
));
10131018
}
10141019

10151020
pub(in super::super) fn suggest_missing_break_or_return_expr(

tests/ui/return/return-impl-trait-bad.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ LL | "don't suggest this, because the generic param is used in the bound."
5353
|
5454
= note: expected type parameter `T`
5555
found reference `&'static str`
56+
= note: the caller chooses a type for `T` which can be different from `&'static str`
5657

5758
error: aborting due to 4 previous errors
5859

tests/ui/return/return-impl-trait.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ LL | ()
1212
|
1313
= note: expected type parameter `T`
1414
found unit type `()`
15+
= note: the caller chooses a type for `T` which can be different from `()`
1516

1617
error[E0308]: mismatched types
1718
--> $DIR/return-impl-trait.rs:23:5
@@ -28,6 +29,7 @@ LL | ()
2829
|
2930
= note: expected type parameter `T`
3031
found unit type `()`
32+
= note: the caller chooses a type for `T` which can be different from `()`
3133

3234
error: aborting due to 2 previous errors
3335

0 commit comments

Comments
 (0)