Skip to content

Commit edc3e26

Browse files
committed
Account for Rc and Arc when suggesting to clone
When suggesting to clone a reference-counted value, be less uncertain.
1 parent c435af0 commit edc3e26

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -751,9 +751,19 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
751751
)
752752
.must_apply_modulo_regions()
753753
{
754+
let msg = if let ty::Adt(def, _) = ty.kind()
755+
&& [
756+
tcx.get_diagnostic_item(sym::Arc),
757+
tcx.get_diagnostic_item(sym::Rc),
758+
].contains(&Some(def.did()))
759+
{
760+
"clone the value to increment its reference count"
761+
} else {
762+
"consider cloning the value if the performance cost is acceptable"
763+
};
754764
err.span_suggestion_verbose(
755765
span.shrink_to_hi(),
756-
"consider cloning the value if the performance cost is acceptable",
766+
msg,
757767
suggestion,
758768
Applicability::MachineApplicable,
759769
);

tests/ui/moves/use_of_moved_value_clone_suggestions.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LL | (t, t)
88
| |
99
| value moved here
1010
|
11-
help: consider cloning the value if the performance cost is acceptable
11+
help: clone the value to increment its reference count
1212
|
1313
LL | (t.clone(), t)
1414
| ++++++++

0 commit comments

Comments
 (0)