Skip to content

Commit c957613

Browse files
Make array suggestions slightly more accurate
1 parent 8a981b6 commit c957613

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

compiler/rustc_trait_selection/src/traits/error_reporting/suggestions.rs

+10-3
Original file line numberDiff line numberDiff line change
@@ -4550,7 +4550,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
45504550
self.type_implements_trait(default_trait, [ty], param_env).must_apply_modulo_regions()
45514551
};
45524552

4553-
Some(match ty.kind() {
4553+
Some(match *ty.kind() {
45544554
ty::Never | ty::Error(_) => return None,
45554555
ty::Bool => "false".to_string(),
45564556
ty::Char => "\'x\'".to_string(),
@@ -4577,12 +4577,19 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
45774577
if let (ty::Str, hir::Mutability::Not) = (ty.kind(), mutability) {
45784578
"\"\"".to_string()
45794579
} else {
4580-
let ty = self.ty_kind_suggestion(param_env, *ty)?;
4580+
let ty = self.ty_kind_suggestion(param_env, ty)?;
45814581
format!("&{}{ty}", mutability.prefix_str())
45824582
}
45834583
}
45844584
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+
}
45864593
}
45874594
ty::Tuple(tys) => format!(
45884595
"({}{})",

tests/ui/moves/move-into-dead-array-1.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ LL | a[i] = d();
88
|
99
help: consider assigning a value
1010
|
11-
LL | let mut a: [D; 4] = [/* value */; 4];
12-
| ++++++++++++++++++
11+
LL | let mut a: [D; 4] = /* value */;
12+
| +++++++++++++
1313

1414
error: aborting due to 1 previous error
1515

0 commit comments

Comments
 (0)