@@ -12,7 +12,7 @@ use rustc_infer::infer;
12
12
use rustc_middle:: mir:: interpret:: ErrorHandled ;
13
13
use rustc_middle:: ty:: { self , Ty , TypeVisitableExt } ;
14
14
use rustc_middle:: { bug, span_bug} ;
15
- use rustc_session:: lint:: builtin:: NON_EXHAUSTIVE_OMITTED_PATTERNS ;
15
+ use rustc_session:: { lint:: builtin:: NON_EXHAUSTIVE_OMITTED_PATTERNS , parse :: feature_err } ;
16
16
use rustc_span:: edit_distance:: find_best_match_for_name;
17
17
use rustc_span:: hygiene:: DesugaringKind ;
18
18
use rustc_span:: source_map:: Spanned ;
@@ -669,17 +669,27 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
669
669
670
670
// Determine the binding mode...
671
671
let bm = match user_bind_annot {
672
- // `mut` resets binding mode on edition <= 2021
673
- BindingMode ( ByRef :: No , Mutability :: Mut )
674
- if !( pat. span . at_least_rust_2024 ( )
675
- && self . tcx . features ( ) . mut_preserve_binding_mode_2024 )
676
- && matches ! ( def_br, ByRef :: Yes ( _) ) =>
677
- {
678
- self . typeck_results
679
- . borrow_mut ( )
680
- . rust_2024_migration_desugared_pats_mut ( )
681
- . insert ( pat_info. top_info . hir_id ) ;
682
- BindingMode ( ByRef :: No , Mutability :: Mut )
672
+ BindingMode ( ByRef :: No , Mutability :: Mut ) if matches ! ( def_br, ByRef :: Yes ( _) ) => {
673
+ if pat. span . at_least_rust_2024 ( ) && self . tcx . features ( ) . ref_pat_eat_one_layer_2024 {
674
+ if !self . tcx . features ( ) . mut_ref {
675
+ feature_err (
676
+ & self . tcx . sess ,
677
+ sym:: mut_ref,
678
+ pat. span . until ( ident. span ) ,
679
+ "binding cannot be both mutable and by-reference" ,
680
+ )
681
+ . emit ( ) ;
682
+ }
683
+
684
+ BindingMode ( def_br, Mutability :: Mut )
685
+ } else {
686
+ // `mut` resets binding mode on edition <= 2021
687
+ self . typeck_results
688
+ . borrow_mut ( )
689
+ . rust_2024_migration_desugared_pats_mut ( )
690
+ . insert ( pat_info. top_info . hir_id ) ;
691
+ BindingMode ( ByRef :: No , Mutability :: Mut )
692
+ }
683
693
}
684
694
BindingMode ( ByRef :: No , mutbl) => BindingMode ( def_br, mutbl) ,
685
695
BindingMode ( ByRef :: Yes ( _) , _) => user_bind_annot,
0 commit comments