Skip to content

Commit 473c88d

Browse files
Flip the order of binder instantiation for better diagnostics
1 parent d567e4f commit 473c88d

File tree

4 files changed

+14
-23
lines changed

4 files changed

+14
-23
lines changed

compiler/rustc_hir_analysis/src/check/compare_impl_item.rs

+7-10
Original file line numberDiff line numberDiff line change
@@ -651,11 +651,7 @@ pub(super) fn collect_return_position_impl_trait_in_trait_tys<'tcx>(
651651
let impl_sig = ocx.normalize(
652652
&norm_cause,
653653
param_env,
654-
infcx.instantiate_binder_with_fresh_vars(
655-
return_span,
656-
infer::HigherRankedType,
657-
tcx.fn_sig(impl_m.def_id).subst_identity(),
658-
),
654+
tcx.liberate_late_bound_regions(impl_m.def_id, tcx.fn_sig(impl_m.def_id).subst_identity()),
659655
);
660656
impl_sig.error_reported()?;
661657
let impl_return_ty = impl_sig.output();
@@ -665,9 +661,10 @@ pub(super) fn collect_return_position_impl_trait_in_trait_tys<'tcx>(
665661
// them with inference variables.
666662
// We will use these inference variables to collect the hidden types of RPITITs.
667663
let mut collector = ImplTraitInTraitCollector::new(&ocx, return_span, param_env, impl_m_def_id);
668-
let unnormalized_trait_sig = tcx
669-
.liberate_late_bound_regions(
670-
impl_m.def_id,
664+
let unnormalized_trait_sig = infcx
665+
.instantiate_binder_with_fresh_vars(
666+
return_span,
667+
infer::HigherRankedType,
671668
tcx.fn_sig(trait_m.def_id).subst(tcx, trait_to_placeholder_substs),
672669
)
673670
.fold_with(&mut collector);
@@ -760,8 +757,8 @@ pub(super) fn collect_return_position_impl_trait_in_trait_tys<'tcx>(
760757

761758
let mut collected_tys = FxHashMap::default();
762759
for (def_id, (ty, substs)) in collected_types {
763-
match infcx.fully_resolve(ty) {
764-
Ok(ty) => {
760+
match infcx.fully_resolve((ty, substs)) {
761+
Ok((ty, substs)) => {
765762
// `ty` contains free regions that we created earlier while liberating the
766763
// trait fn signature. However, projection normalization expects `ty` to
767764
// contains `def_id`'s early-bound regions.

tests/ui/impl-trait/in-trait/method-signature-matches.lt.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ LL | fn early<'late, T>(_: &'late ()) {}
55
| - ^^^^^^^^^
66
| | |
77
| | expected type parameter `T`, found `()`
8-
| | help: change the parameter type to match the trait: `&'early T`
8+
| | help: change the parameter type to match the trait: `&T`
99
| this type parameter
1010
|
1111
note: type in trait
1212
--> $DIR/method-signature-matches.rs:53:28
1313
|
1414
LL | fn early<'early, T>(x: &'early T) -> impl Sized;
1515
| ^^^^^^^^^
16-
= note: expected signature `fn(&'early T)`
17-
found signature `fn(&())`
16+
= note: expected signature `fn(&T)`
17+
found signature `fn(&'late ())`
1818

1919
error: aborting due to previous error
2020

Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
error: return type captures more lifetimes than trait definition
22
--> $DIR/signature-mismatch.rs:17:47
33
|
4-
LL | fn async_fn(&self, buff: &[u8]) -> impl Future<Output = Vec<u8>>;
5-
| - this lifetime was captured
6-
...
74
LL | fn async_fn<'a>(&self, buff: &'a [u8]) -> impl Future<Output = Vec<u8>> + 'a {
8-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5+
| -- this lifetime was captured ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
96
|
107
note: hidden type must only reference lifetimes captured by this impl trait
118
--> $DIR/signature-mismatch.rs:11:40
129
|
1310
LL | fn async_fn(&self, buff: &[u8]) -> impl Future<Output = Vec<u8>>;
1411
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15-
= note: hidden type inferred to be `impl Future<Output = Vec<u8>> + '_`
12+
= note: hidden type inferred to be `impl Future<Output = Vec<u8>> + 'a`
1613

1714
error: aborting due to previous error
1815

Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
error: return type captures more lifetimes than trait definition
22
--> $DIR/signature-mismatch.rs:17:47
33
|
4-
LL | fn async_fn(&self, buff: &[u8]) -> impl Future<Output = Vec<u8>>;
5-
| - this lifetime was captured
6-
...
74
LL | fn async_fn<'a>(&self, buff: &'a [u8]) -> impl Future<Output = Vec<u8>> + 'a {
8-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5+
| -- this lifetime was captured ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
96
|
107
note: hidden type must only reference lifetimes captured by this impl trait
118
--> $DIR/signature-mismatch.rs:11:40
129
|
1310
LL | fn async_fn(&self, buff: &[u8]) -> impl Future<Output = Vec<u8>>;
1411
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15-
= note: hidden type inferred to be `impl Future<Output = Vec<u8>> + '_`
12+
= note: hidden type inferred to be `impl Future<Output = Vec<u8>> + 'a`
1613

1714
error: aborting due to previous error
1815

0 commit comments

Comments
 (0)