1
1
use std:: ops:: ControlFlow ;
2
2
3
- use rustc_errors:: {
4
- Applicability , Diag , E0283 , E0284 , E0790 , MultiSpan , StashKey , struct_span_code_err,
5
- } ;
3
+ use rustc_errors:: { Applicability , Diag , E0283 , E0790 , MultiSpan , StashKey , struct_span_code_err} ;
6
4
use rustc_hir as hir;
7
5
use rustc_hir:: LangItem ;
8
6
use rustc_hir:: def:: { DefKind , Res } ;
@@ -534,7 +532,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
534
532
obligation. cause . body_id ,
535
533
span,
536
534
arg,
537
- TypeAnnotationNeeded :: E0284 ,
535
+ TypeAnnotationNeeded :: E0283 ,
538
536
true ,
539
537
)
540
538
. with_note ( format ! ( "cannot satisfy `{predicate}`" ) )
@@ -543,7 +541,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
543
541
struct_span_code_err ! (
544
542
self . dcx( ) ,
545
543
span,
546
- E0284 ,
544
+ E0283 ,
547
545
"type annotations needed: cannot satisfy `{predicate}`" ,
548
546
)
549
547
. with_span_label ( span, format ! ( "cannot satisfy `{predicate}`" ) )
@@ -563,7 +561,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
563
561
obligation. cause . body_id ,
564
562
span,
565
563
arg,
566
- TypeAnnotationNeeded :: E0284 ,
564
+ TypeAnnotationNeeded :: E0283 ,
567
565
true ,
568
566
) ;
569
567
err
@@ -573,7 +571,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
573
571
struct_span_code_err ! (
574
572
self . dcx( ) ,
575
573
span,
576
- E0284 ,
574
+ E0283 ,
577
575
"type annotations needed: cannot satisfy `{predicate}`" ,
578
576
)
579
577
. with_span_label ( span, format ! ( "cannot satisfy `{predicate}`" ) )
@@ -585,7 +583,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
585
583
obligation. cause . body_id ,
586
584
span,
587
585
ct. into ( ) ,
588
- TypeAnnotationNeeded :: E0284 ,
586
+ TypeAnnotationNeeded :: E0283 ,
589
587
true ,
590
588
) ,
591
589
ty:: PredicateKind :: NormalizesTo ( ty:: NormalizesTo { alias, term } )
@@ -598,7 +596,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
598
596
struct_span_code_err ! (
599
597
self . dcx( ) ,
600
598
span,
601
- E0284 ,
599
+ E0283 ,
602
600
"type annotations needed: cannot normalize `{alias}`" ,
603
601
)
604
602
. with_span_label ( span, format ! ( "cannot normalize `{alias}`" ) )
@@ -612,7 +610,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
612
610
struct_span_code_err ! (
613
611
self . dcx( ) ,
614
612
span,
615
- E0284 ,
613
+ E0283 ,
616
614
"type annotations needed: cannot satisfy `{predicate}`" ,
617
615
)
618
616
. with_span_label ( span, format ! ( "cannot satisfy `{predicate}`" ) )
0 commit comments