@@ -405,7 +405,7 @@ fn compare_predicate_entailment<'tcx>(
405
405
// version.
406
406
let errors = ocx. select_all_or_error ( ) ;
407
407
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 ) ;
409
409
return Err ( reported) ;
410
410
}
411
411
@@ -538,7 +538,7 @@ pub fn collect_trait_impl_trait_tys<'tcx>(
538
538
// RPITs.
539
539
let errors = ocx. select_all_or_error ( ) ;
540
540
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 ) ;
542
542
return Err ( reported) ;
543
543
}
544
544
@@ -1431,7 +1431,7 @@ pub(crate) fn raw_compare_const_impl<'tcx>(
1431
1431
// version.
1432
1432
let errors = ocx. select_all_or_error ( ) ;
1433
1433
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 ) ) ;
1435
1435
}
1436
1436
1437
1437
// FIXME return `ErrorReported` if region obligations error?
@@ -1549,7 +1549,7 @@ fn compare_type_predicate_entailment<'tcx>(
1549
1549
// version.
1550
1550
let errors = ocx. select_all_or_error ( ) ;
1551
1551
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 ) ;
1553
1553
return Err ( reported) ;
1554
1554
}
1555
1555
@@ -1769,7 +1769,7 @@ pub fn check_type_bounds<'tcx>(
1769
1769
// version.
1770
1770
let errors = ocx. select_all_or_error ( ) ;
1771
1771
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 ) ;
1773
1773
return Err ( reported) ;
1774
1774
}
1775
1775
0 commit comments