@@ -883,8 +883,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
883
883
self . tcx. get_diagnostic_item( sym:: unwind_safe_trait) ,
884
884
self . tcx. get_diagnostic_item( sym:: ref_unwind_safe_trait) ,
885
885
] ;
886
- let auto_traits =
887
- vec ! [ "`Clone`" , "`Sync`" , "`Send`" , "`Unpin`" , "`UnwindSafe`" , "`RefUnwindSafe`" ] ;
886
+ const AUTO_TRAITS : [ & str ; 6 ] =
887
+ [ "`Clone`" , "`Sync`" , "`Send`" , "`Unpin`" , "`UnwindSafe`" , "`RefUnwindSafe`" ] ;
888
888
889
889
let root_var_min_capture_list = min_captures. and_then ( |m| m. get ( & var_hir_id) ) ?;
890
890
@@ -957,7 +957,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
957
957
// by the root variable but not by the capture
958
958
for ( idx, _) in obligations_should_hold. iter ( ) . enumerate ( ) {
959
959
if !obligations_holds_for_capture[ idx] && obligations_should_hold[ idx] {
960
- capture_problems. insert ( auto_traits [ idx] ) ;
960
+ capture_problems. insert ( AUTO_TRAITS [ idx] ) ;
961
961
}
962
962
}
963
963
@@ -1074,7 +1074,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1074
1074
min_captures : Option < & ty:: RootVariableMinCaptureList < ' tcx > > ,
1075
1075
) -> ( Vec < MigrationDiagnosticInfo > , String ) {
1076
1076
let Some ( upvars) = self . tcx . upvars_mentioned ( closure_def_id) else {
1077
- return ( Vec :: new ( ) , format ! ( "" ) ) ;
1077
+ return ( Vec :: new ( ) , String :: new ( ) ) ;
1078
1078
} ;
1079
1079
1080
1080
let mut need_migrations = Vec :: new ( ) ;
0 commit comments