Skip to content

Commit afb10f4

Browse files
committed
Auto merge of #65288 - estebank:point-at-assoc-type, r=<try>
Point at associated type for some obligations Partially address #57663.
2 parents 000d90b + cbd994b commit afb10f4

15 files changed

+210
-54
lines changed

src/librustc/traits/error_reporting.rs

+37-15
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
195195
obligation: &PredicateObligation<'tcx>,
196196
error: &MismatchedProjectionTypes<'tcx>,
197197
) {
198-
let predicate =
199-
self.resolve_vars_if_possible(&obligation.predicate);
198+
let predicate = self.resolve_vars_if_possible(&obligation.predicate);
200199

201200
if predicate.references_error() {
202201
return
@@ -228,7 +227,8 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
228227
&mut obligations
229228
);
230229
if let Err(error) = self.at(&obligation.cause, obligation.param_env)
231-
.eq(normalized_ty, data.ty) {
230+
.eq(normalized_ty, data.ty)
231+
{
232232
values = Some(infer::ValuePairs::Types(ExpectedFound {
233233
expected: normalized_ty,
234234
found: data.ty,
@@ -239,13 +239,19 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
239239
}
240240

241241
let msg = format!("type mismatch resolving `{}`", predicate);
242-
let error_id = (DiagnosticMessageId::ErrorId(271),
243-
Some(obligation.cause.span), msg);
242+
let error_id = (
243+
DiagnosticMessageId::ErrorId(271),
244+
Some(obligation.cause.span),
245+
msg,
246+
);
244247
let fresh = self.tcx.sess.one_time_diagnostics.borrow_mut().insert(error_id);
245248
if fresh {
246249
let mut diag = struct_span_err!(
247-
self.tcx.sess, obligation.cause.span, E0271,
248-
"type mismatch resolving `{}`", predicate
250+
self.tcx.sess,
251+
obligation.cause.span,
252+
E0271,
253+
"type mismatch resolving `{}`",
254+
predicate
249255
);
250256
self.note_type_err(&mut diag, &obligation.cause, None, values, err);
251257
self.note_obligation_cause(&mut diag, obligation);
@@ -532,23 +538,33 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
532538
/// whose result could not be truly determined and thus we can't say
533539
/// if the program type checks or not -- and they are unusual
534540
/// occurrences in any case.
535-
pub fn report_overflow_error<T>(&self,
536-
obligation: &Obligation<'tcx, T>,
537-
suggest_increasing_limit: bool) -> !
541+
pub fn report_overflow_error<T>(
542+
&self,
543+
obligation: &Obligation<'tcx, T>,
544+
suggest_increasing_limit: bool,
545+
) -> !
538546
where T: fmt::Display + TypeFoldable<'tcx>
539547
{
540548
let predicate =
541549
self.resolve_vars_if_possible(&obligation.predicate);
542-
let mut err = struct_span_err!(self.tcx.sess, obligation.cause.span, E0275,
543-
"overflow evaluating the requirement `{}`",
544-
predicate);
550+
let mut err = struct_span_err!(
551+
self.tcx.sess,
552+
obligation.cause.span,
553+
E0275,
554+
"overflow evaluating the requirement `{}`",
555+
predicate
556+
);
545557

546558
if suggest_increasing_limit {
547559
self.suggest_new_overflow_limit(&mut err);
548560
}
549561

550-
self.note_obligation_cause_code(&mut err, &obligation.predicate, &obligation.cause.code,
551-
&mut vec![]);
562+
self.note_obligation_cause_code(
563+
&mut err,
564+
&obligation.predicate,
565+
&obligation.cause.code,
566+
&mut vec![],
567+
);
552568

553569
err.emit();
554570
self.tcx.sess.abort_if_errors();
@@ -2027,6 +2043,12 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
20272043
);
20282044
}
20292045
}
2046+
ObligationCauseCode::AssocTypeBound(impl_span, orig) => {
2047+
err.span_label(orig, "associated type defined here");
2048+
if let Some(sp) = impl_span {
2049+
err.span_label(sp, "in this `impl` item");
2050+
}
2051+
}
20302052
}
20312053
}
20322054

src/librustc/traits/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,8 @@ pub enum ObligationCauseCode<'tcx> {
268268

269269
/// #[feature(trivial_bounds)] is not enabled
270270
TrivialBound,
271+
272+
AssocTypeBound(/*impl*/ Option<Span>, /*original*/ Span),
271273
}
272274

273275
// `ObligationCauseCode` is used a lot. Make sure it doesn't unintentionally get bigger.

src/librustc/traits/structural_impls.rs

+1
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,7 @@ impl<'a, 'tcx> Lift<'tcx> for traits::ObligationCauseCode<'a> {
544544
super::MethodReceiver => Some(super::MethodReceiver),
545545
super::BlockTailExpression(id) => Some(super::BlockTailExpression(id)),
546546
super::TrivialBound => Some(super::TrivialBound),
547+
super::AssocTypeBound(impl_sp, sp) => Some(super::AssocTypeBound(impl_sp, sp)),
547548
}
548549
}
549550
}

src/librustc/ty/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3133,6 +3133,7 @@ impl<'tcx> TyCtxt<'tcx> {
31333133
}
31343134
}
31353135

3136+
#[derive(Clone)]
31363137
pub struct AssocItemsIterator<'tcx> {
31373138
tcx: TyCtxt<'tcx>,
31383139
def_ids: &'tcx [DefId],

src/librustc/ty/wf.rs

+68-19
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@ pub fn obligations<'a, 'tcx>(
2222
ty: Ty<'tcx>,
2323
span: Span,
2424
) -> Option<Vec<traits::PredicateObligation<'tcx>>> {
25-
let mut wf = WfPredicates { infcx,
26-
param_env,
27-
body_id,
28-
span,
29-
out: vec![] };
25+
let mut wf = WfPredicates {
26+
infcx,
27+
param_env,
28+
body_id,
29+
span,
30+
out: vec![],
31+
item: None,
32+
};
3033
if wf.compute(ty) {
3134
debug!("wf::obligations({:?}, body_id={:?}) = {:?}", ty, body_id, wf.out);
3235
let result = wf.normalize();
@@ -47,8 +50,9 @@ pub fn trait_obligations<'a, 'tcx>(
4750
body_id: hir::HirId,
4851
trait_ref: &ty::TraitRef<'tcx>,
4952
span: Span,
53+
item: Option<&'tcx hir::Item>,
5054
) -> Vec<traits::PredicateObligation<'tcx>> {
51-
let mut wf = WfPredicates { infcx, param_env, body_id, span, out: vec![] };
55+
let mut wf = WfPredicates { infcx, param_env, body_id, span, out: vec![], item };
5256
wf.compute_trait_ref(trait_ref, Elaborate::All);
5357
wf.normalize()
5458
}
@@ -60,7 +64,7 @@ pub fn predicate_obligations<'a, 'tcx>(
6064
predicate: &ty::Predicate<'tcx>,
6165
span: Span,
6266
) -> Vec<traits::PredicateObligation<'tcx>> {
63-
let mut wf = WfPredicates { infcx, param_env, body_id, span, out: vec![] };
67+
let mut wf = WfPredicates { infcx, param_env, body_id, span, out: vec![], item: None };
6468

6569
// (*) ok to skip binders, because wf code is prepared for it
6670
match *predicate {
@@ -107,6 +111,7 @@ struct WfPredicates<'a, 'tcx> {
107111
body_id: hir::HirId,
108112
span: Span,
109113
out: Vec<traits::PredicateObligation<'tcx>>,
114+
item: Option<&'tcx hir::Item>,
110115
}
111116

112117
/// Controls whether we "elaborate" supertraits and so forth on the WF
@@ -157,33 +162,77 @@ impl<'a, 'tcx> WfPredicates<'a, 'tcx> {
157162
.collect()
158163
}
159164

160-
/// Pushes the obligations required for `trait_ref` to be WF into
161-
/// `self.out`.
165+
/// Pushes the obligations required for `trait_ref` to be WF into `self.out`.
162166
fn compute_trait_ref(&mut self, trait_ref: &ty::TraitRef<'tcx>, elaborate: Elaborate) {
167+
let tcx = self.infcx.tcx;
163168
let obligations = self.nominal_obligations(trait_ref.def_id, trait_ref.substs);
164169

165170
let cause = self.cause(traits::MiscObligation);
166171
let param_env = self.param_env;
167172

168173
if let Elaborate::All = elaborate {
174+
let trait_assoc_items = tcx.associated_items(trait_ref.def_id);
175+
169176
let predicates = obligations.iter()
170-
.map(|obligation| obligation.predicate.clone())
171-
.collect();
172-
let implied_obligations = traits::elaborate_predicates(self.infcx.tcx, predicates);
177+
.map(|obligation| obligation.predicate.clone())
178+
.collect();
179+
let implied_obligations = traits::elaborate_predicates(tcx, predicates);
180+
let item_span: Option<Span> = self.item.map(|i| i.span);
181+
let item = &self.item;
173182
let implied_obligations = implied_obligations.map(|pred| {
174-
traits::Obligation::new(cause.clone(), param_env, pred)
183+
let mut cause = cause.clone();
184+
match &pred {
185+
ty::Predicate::Projection(proj) => {
186+
if let Some(hir::ItemKind::Impl(.., impl_items)) = item.map(|i| &i.kind) {
187+
let trait_assoc_item = tcx.associated_item(proj.projection_def_id());
188+
if let Some(impl_item) = impl_items.iter().filter(|item| {
189+
item.ident == trait_assoc_item.ident
190+
}).next() {
191+
cause.span = impl_item.span;
192+
cause.code = traits::AssocTypeBound(
193+
item_span,
194+
trait_assoc_item.ident.span,
195+
);
196+
}
197+
}
198+
}
199+
ty::Predicate::Trait(proj) => {
200+
if let (
201+
ty::Projection(ty::ProjectionTy { item_def_id, .. }),
202+
Some(hir::ItemKind::Impl(.., impl_items)),
203+
) = (&proj.skip_binder().self_ty().kind, item.map(|i| &i.kind)) {
204+
if let Some((impl_item, trait_assoc_item)) = trait_assoc_items.clone()
205+
.filter(|i| i.def_id == *item_def_id)
206+
.next()
207+
.and_then(|trait_assoc_item| impl_items.iter()
208+
.filter(|i| i.ident == trait_assoc_item.ident)
209+
.next()
210+
.map(|impl_item| (impl_item, trait_assoc_item)))
211+
{
212+
cause.span = impl_item.span;
213+
cause.code = traits::AssocTypeBound(
214+
item_span,
215+
trait_assoc_item.ident.span,
216+
);
217+
}
218+
}
219+
}
220+
_ => {}
221+
}
222+
traits::Obligation::new(cause, param_env, pred)
175223
});
176224
self.out.extend(implied_obligations);
177225
}
178226

179227
self.out.extend(obligations);
180228

181-
self.out.extend(
182-
trait_ref.substs.types()
183-
.filter(|ty| !ty.has_escaping_bound_vars())
184-
.map(|ty| traits::Obligation::new(cause.clone(),
185-
param_env,
186-
ty::Predicate::WellFormed(ty))));
229+
self.out.extend(trait_ref.substs.types()
230+
.filter(|ty| !ty.has_escaping_bound_vars())
231+
.map(|ty| traits::Obligation::new(
232+
cause.clone(),
233+
param_env,
234+
ty::Predicate::WellFormed(ty),
235+
)));
187236
}
188237

189238
/// Pushes the obligations required for `trait_ref::Item` to be WF

src/librustc_typeck/check/wfcheck.rs

+13-10
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ fn check_item_type(
430430

431431
fn check_impl<'tcx>(
432432
tcx: TyCtxt<'tcx>,
433-
item: &hir::Item,
433+
item: &'tcx hir::Item,
434434
ast_self_ty: &hir::Ty,
435435
ast_trait_ref: &Option<hir::TraitRef>,
436436
) {
@@ -445,15 +445,18 @@ fn check_impl<'tcx>(
445445
// therefore don't need to be WF (the trait's `Self: Trait` predicate
446446
// won't hold).
447447
let trait_ref = fcx.tcx.impl_trait_ref(item_def_id).unwrap();
448-
let trait_ref =
449-
fcx.normalize_associated_types_in(
450-
ast_trait_ref.path.span, &trait_ref);
451-
let obligations =
452-
ty::wf::trait_obligations(fcx,
453-
fcx.param_env,
454-
fcx.body_id,
455-
&trait_ref,
456-
ast_trait_ref.path.span);
448+
let trait_ref = fcx.normalize_associated_types_in(
449+
ast_trait_ref.path.span,
450+
&trait_ref,
451+
);
452+
let obligations = ty::wf::trait_obligations(
453+
fcx,
454+
fcx.param_env,
455+
fcx.body_id,
456+
&trait_ref,
457+
ast_trait_ref.path.span,
458+
Some(item),
459+
);
457460
for obligation in obligations {
458461
fcx.register_predicate(obligation);
459462
}

src/test/compile-fail/chalkify/impl_wf.rs

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ impl<T> Bar for Option<T> {
2525
impl Bar for f32 {
2626
//~^ ERROR the trait bound `f32: Foo` is not satisfied
2727
type Item = f32;
28+
//~^ ERROR the trait bound `f32: Foo` is not satisfied
2829
}
2930

3031
trait Baz<U: ?Sized> where U: Foo { }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
trait Bar {}
2+
3+
trait Foo {
4+
type Assoc: Bar;
5+
}
6+
7+
impl Foo for () {
8+
type Assoc = bool; //~ ERROR the trait bound `bool: Bar` is not satisfied
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
error[E0277]: the trait bound `bool: Bar` is not satisfied
2+
--> $DIR/point-at-type-on-obligation-failure-2.rs:8:5
3+
|
4+
LL | type Assoc: Bar;
5+
| ----- associated type defined here
6+
...
7+
LL | / impl Foo for () {
8+
LL | | type Assoc = bool;
9+
| | ^^^^^^^^^^^^^^^^^^ the trait `Bar` is not implemented for `bool`
10+
LL | | }
11+
| |_- in this `impl` item
12+
13+
error: aborting due to previous error
14+
15+
For more information about this error, try `rustc --explain E0277`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
trait Bar {
2+
type Ok;
3+
type Sibling: Bar2<Ok=Self::Ok>;
4+
}
5+
trait Bar2 {
6+
type Ok;
7+
}
8+
9+
struct Foo;
10+
struct Foo2;
11+
12+
impl Bar for Foo {
13+
type Ok = (); //~ ERROR type mismatch resolving `<Foo2 as Bar2>::Ok == ()`
14+
type Sibling = Foo2;
15+
}
16+
impl Bar2 for Foo2 {
17+
type Ok = u32;
18+
}
19+
20+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
error[E0271]: type mismatch resolving `<Foo2 as Bar2>::Ok == ()`
2+
--> $DIR/point-at-type-on-obligation-failure.rs:13:5
3+
|
4+
LL | type Ok;
5+
| -- associated type defined here
6+
...
7+
LL | / impl Bar for Foo {
8+
LL | | type Ok = ();
9+
| | ^^^^^^^^^^^^^ expected u32, found ()
10+
LL | | type Sibling = Foo2;
11+
LL | | }
12+
| |_- in this `impl` item
13+
|
14+
= note: expected type `u32`
15+
found type `()`
16+
17+
error: aborting due to previous error
18+
19+
For more information about this error, try `rustc --explain E0271`.

src/test/ui/issues/issue-43784-associated-type.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ impl<T> Partial<T> for T::Assoc where
1010
{
1111
}
1212

13-
impl<T> Complete for T { //~ ERROR the trait bound `T: std::marker::Copy` is not satisfied
14-
type Assoc = T;
13+
impl<T> Complete for T {
14+
type Assoc = T; //~ ERROR the trait bound `T: std::marker::Copy` is not satisfied
1515
}
1616

1717
fn main() {}

0 commit comments

Comments
 (0)