@@ -4550,7 +4550,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
4550
4550
self . type_implements_trait ( default_trait, [ ty] , param_env) . must_apply_modulo_regions ( )
4551
4551
} ;
4552
4552
4553
- Some ( match ty. kind ( ) {
4553
+ Some ( match * ty. kind ( ) {
4554
4554
ty:: Never | ty:: Error ( _) => return None ,
4555
4555
ty:: Bool => "false" . to_string ( ) ,
4556
4556
ty:: Char => "\' x\' " . to_string ( ) ,
@@ -4577,12 +4577,19 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
4577
4577
if let ( ty:: Str , hir:: Mutability :: Not ) = ( ty. kind ( ) , mutability) {
4578
4578
"\" \" " . to_string ( )
4579
4579
} else {
4580
- let ty = self . ty_kind_suggestion ( param_env, * ty) ?;
4580
+ let ty = self . ty_kind_suggestion ( param_env, ty) ?;
4581
4581
format ! ( "&{}{ty}" , mutability. prefix_str( ) )
4582
4582
}
4583
4583
}
4584
4584
ty:: Array ( ty, len) if let Some ( len) = len. try_eval_target_usize ( tcx, param_env) => {
4585
- format ! ( "[{}; {}]" , self . ty_kind_suggestion( param_env, * ty) ?, len)
4585
+ if len == 0 {
4586
+ "[]" . to_string ( )
4587
+ } else if self . type_is_copy_modulo_regions ( param_env, ty) || len == 1 {
4588
+ // Can only suggest `[ty; 0]` if sz == 1 or copy
4589
+ format ! ( "[{}; {}]" , self . ty_kind_suggestion( param_env, ty) ?, len)
4590
+ } else {
4591
+ "/* value */" . to_string ( )
4592
+ }
4586
4593
}
4587
4594
ty:: Tuple ( tys) => format ! (
4588
4595
"({}{})" ,
0 commit comments