@@ -5,8 +5,8 @@ use crate::errors::{
5
5
ExpectedCommaAfterPatternField , GenericArgsInPatRequireTurbofishSyntax ,
6
6
InclusiveRangeExtraEquals , InclusiveRangeMatchArrow , InclusiveRangeNoEnd , InvalidMutInPattern ,
7
7
PatternOnWrongSideOfAt , RefMutOrderIncorrect , RemoveLet , RepeatedMutInPattern ,
8
- TopLevelOrPatternNotAllowed , TopLevelOrPatternNotAllowedSugg , TrailingVertNotAllowed ,
9
- UnexpectedLifetimeInPattern , UnexpectedVertVertBeforeFunctionParam ,
8
+ SwitchRefBoxOrder , TopLevelOrPatternNotAllowed , TopLevelOrPatternNotAllowedSugg ,
9
+ TrailingVertNotAllowed , UnexpectedLifetimeInPattern , UnexpectedVertVertBeforeFunctionParam ,
10
10
UnexpectedVertVertInPattern ,
11
11
} ;
12
12
use crate :: { maybe_recover_from_interpolated_ty_qpath, maybe_whole} ;
@@ -374,6 +374,12 @@ impl<'a> Parser<'a> {
374
374
} else if self . eat_keyword ( kw:: Mut ) {
375
375
self . parse_pat_ident_mut ( syntax_loc) ?
376
376
} else if self . eat_keyword ( kw:: Ref ) {
377
+ if self . check_keyword ( kw:: Box ) {
378
+ // Suggest `box ref` and quit parsing pattern to prevent series of
379
+ // misguided diagnostics from later stages of the compiler.
380
+ let span = self . prev_token . span . to ( self . token . span ) ;
381
+ return Err ( self . sess . create_err ( SwitchRefBoxOrder { span } ) ) ;
382
+ }
377
383
// Parse ref ident @ pat / ref mut ident @ pat
378
384
let mutbl = self . parse_mutability ( ) ;
379
385
self . parse_pat_ident ( BindingAnnotation ( ByRef :: Yes , mutbl) , syntax_loc) ?
0 commit comments