@@ -13,7 +13,7 @@ use crate::errors::{
13
13
IncorrectUseOfAwait , ParenthesesInForHead , ParenthesesInForHeadSugg ,
14
14
PatternMethodParamWithoutBody , QuestionMarkInType , QuestionMarkInTypeSugg , SelfParamNotFirst ,
15
15
StructLiteralBodyWithoutPath , StructLiteralBodyWithoutPathSugg , StructLiteralNeedingParens ,
16
- StructLiteralNeedingParensSugg , SuggEscapeIdentifier , SuggRemoveComma ,
16
+ StructLiteralNeedingParensSugg , SuggAddMissingLetStmt , SuggEscapeIdentifier , SuggRemoveComma ,
17
17
UnexpectedConstInGenericParam , UnexpectedConstParamDeclaration ,
18
18
UnexpectedConstParamDeclarationSugg , UnmatchedAngleBrackets , UseEqInstead ,
19
19
} ;
@@ -32,8 +32,8 @@ use rustc_ast::{
32
32
use rustc_ast_pretty:: pprust;
33
33
use rustc_data_structures:: fx:: FxHashSet ;
34
34
use rustc_errors:: {
35
- pluralize, Applicability , Diagnostic , DiagnosticBuilder , DiagnosticMessage , ErrorGuaranteed ,
36
- FatalError , Handler , IntoDiagnostic , MultiSpan , PResult ,
35
+ pluralize, AddToDiagnostic , Applicability , Diagnostic , DiagnosticBuilder , DiagnosticMessage ,
36
+ ErrorGuaranteed , FatalError , Handler , IntoDiagnostic , MultiSpan , PResult ,
37
37
} ;
38
38
use rustc_session:: errors:: ExprParenthesesNeeded ;
39
39
use rustc_span:: source_map:: Spanned ;
@@ -1019,12 +1019,8 @@ impl<'a> Parser<'a> {
1019
1019
match self . parse_ty ( ) {
1020
1020
Ok ( _) => {
1021
1021
if self . token == token:: Eq {
1022
- err. span_suggestion_verbose (
1023
- prev_span,
1024
- "you might have meant to introduce a new binding" ,
1025
- "let " . to_string ( ) ,
1026
- Applicability :: MaybeIncorrect ,
1027
- ) ;
1022
+ let sugg = SuggAddMissingLetStmt { span : prev_span } ;
1023
+ sugg. add_to_diagnostic ( err) ;
1028
1024
}
1029
1025
}
1030
1026
Err ( e) => {
0 commit comments