@@ -405,7 +405,7 @@ fn compare_predicate_entailment<'tcx>(
405405 // version.
406406 let errors = ocx. select_all_or_error ( ) ;
407407 if !errors. is_empty ( ) {
408- let reported = infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None , false ) ;
408+ let reported = infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None ) ;
409409 return Err ( reported) ;
410410 }
411411
@@ -538,7 +538,7 @@ pub fn collect_trait_impl_trait_tys<'tcx>(
538538 // RPITs.
539539 let errors = ocx. select_all_or_error ( ) ;
540540 if !errors. is_empty ( ) {
541- let reported = infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None , false ) ;
541+ let reported = infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None ) ;
542542 return Err ( reported) ;
543543 }
544544
@@ -1431,7 +1431,7 @@ pub(crate) fn raw_compare_const_impl<'tcx>(
14311431 // version.
14321432 let errors = ocx. select_all_or_error ( ) ;
14331433 if !errors. is_empty ( ) {
1434- return Err ( infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None , false ) ) ;
1434+ return Err ( infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None ) ) ;
14351435 }
14361436
14371437 // FIXME return `ErrorReported` if region obligations error?
@@ -1549,7 +1549,7 @@ fn compare_type_predicate_entailment<'tcx>(
15491549 // version.
15501550 let errors = ocx. select_all_or_error ( ) ;
15511551 if !errors. is_empty ( ) {
1552- let reported = infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None , false ) ;
1552+ let reported = infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None ) ;
15531553 return Err ( reported) ;
15541554 }
15551555
@@ -1769,7 +1769,7 @@ pub fn check_type_bounds<'tcx>(
17691769 // version.
17701770 let errors = ocx. select_all_or_error ( ) ;
17711771 if !errors. is_empty ( ) {
1772- let reported = infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None , false ) ;
1772+ let reported = infcx. err_ctxt ( ) . report_fulfillment_errors ( & errors, None ) ;
17731773 return Err ( reported) ;
17741774 }
17751775
0 commit comments