@@ -661,19 +661,26 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
661
661
// Find all the requirements that come from a local `impl` block.
662
662
let mut skip_list: FxHashSet < _ > = Default :: default ( ) ;
663
663
let mut spanned_predicates = FxHashMap :: default ( ) ;
664
- for ( p, parent_p, impl_def_id, cause) in unsatisfied_predicates
665
- . iter ( )
666
- . filter_map ( |( p, parent, c) | c. as_ref ( ) . map ( |c| ( p, parent, c) ) )
667
- . filter_map ( |( p, parent, c) | match c. code ( ) {
668
- ObligationCauseCode :: ImplDerivedObligation ( data)
669
- if matches ! ( p. kind( ) . skip_binder( ) , ty:: PredicateKind :: Clause ( _) ) =>
670
- {
671
- Some ( ( p, parent, data. impl_or_alias_def_id , data) )
664
+ for ( p, parent_p, cause) in unsatisfied_predicates {
665
+ // Extract the predicate span and parent def id of the cause,
666
+ // if we have one.
667
+ let ( item_def_id, cause_span) = match cause. as_ref ( ) . map ( |cause| cause. code ( ) ) {
668
+ Some ( ObligationCauseCode :: ImplDerivedObligation ( data) ) => {
669
+ ( data. impl_or_alias_def_id , data. span )
672
670
}
673
- _ => None ,
674
- } )
675
- {
676
- match self . tcx . hir ( ) . get_if_local ( impl_def_id) {
671
+ Some (
672
+ ObligationCauseCode :: ExprBindingObligation ( def_id, span, _, _)
673
+ | ObligationCauseCode :: BindingObligation ( def_id, span) ,
674
+ ) => ( * def_id, * span) ,
675
+ _ => continue ,
676
+ } ;
677
+
678
+ // Don't point out the span of `WellFormed` predicates.
679
+ if !matches ! ( p. kind( ) . skip_binder( ) , ty:: PredicateKind :: Clause ( _) ) {
680
+ continue ;
681
+ } ;
682
+
683
+ match self . tcx . hir ( ) . get_if_local ( item_def_id) {
677
684
// Unmet obligation comes from a `derive` macro, point at it once to
678
685
// avoid multiple span labels pointing at the same place.
679
686
Some ( Node :: Item ( hir:: Item {
@@ -718,7 +725,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
718
725
}
719
726
} ) ;
720
727
for param in generics. params {
721
- if param. span == cause . span && sized_pred {
728
+ if param. span == cause_span && sized_pred {
722
729
let ( sp, sugg) = match param. colon_span {
723
730
Some ( sp) => ( sp. shrink_to_hi ( ) , " ?Sized +" ) ,
724
731
None => ( param. span . shrink_to_hi ( ) , ": ?Sized" ) ,
@@ -741,9 +748,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
741
748
( FxHashSet :: default ( ) , FxHashSet :: default ( ) , Vec :: new ( ) )
742
749
} ) ;
743
750
entry. 2 . push ( p) ;
744
- if cause . span != * item_span {
745
- entry. 0 . insert ( cause . span ) ;
746
- entry. 1 . insert ( ( cause . span , "unsatisfied trait bound introduced here" ) ) ;
751
+ if cause_span != * item_span {
752
+ entry. 0 . insert ( cause_span ) ;
753
+ entry. 1 . insert ( ( cause_span , "unsatisfied trait bound introduced here" ) ) ;
747
754
} else {
748
755
if let Some ( trait_ref) = of_trait {
749
756
entry. 0 . insert ( trait_ref. path . span ) ;
@@ -775,9 +782,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
775
782
let entry = entry. or_insert_with ( || {
776
783
( FxHashSet :: default ( ) , FxHashSet :: default ( ) , Vec :: new ( ) )
777
784
} ) ;
778
- entry. 0 . insert ( cause . span ) ;
785
+ entry. 0 . insert ( cause_span ) ;
779
786
entry. 1 . insert ( ( ident. span , "" ) ) ;
780
- entry. 1 . insert ( ( cause . span , "unsatisfied trait bound introduced here" ) ) ;
787
+ entry. 1 . insert ( ( cause_span , "unsatisfied trait bound introduced here" ) ) ;
781
788
entry. 2 . push ( p) ;
782
789
}
783
790
Some ( node) => unreachable ! ( "encountered `{node:?}`" ) ,
0 commit comments