Skip to content

Commit 38874a6

Browse files
committed
use stable sort to sort multipart diagnostics
1 parent 9337f7a commit 38874a6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1124,8 +1124,8 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, '_, 'infcx, 'tcx> {
11241124
err.multipart_suggestion(
11251125
"consider moving the expression out of the loop so it is only moved once",
11261126
vec![
1127-
(parent.span, "value".to_string()),
11281127
(span.shrink_to_lo(), format!("let mut value = {value};{indent}")),
1128+
(parent.span, "value".to_string()),
11291129
],
11301130
Applicability::MaybeIncorrect,
11311131
);

compiler/rustc_errors/src/diagnostic.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -920,8 +920,8 @@ impl<'a, G: EmissionGuarantee> Diag<'a, G> {
920920
applicability: Applicability,
921921
style: SuggestionStyle,
922922
) -> &mut Self {
923-
suggestion.sort_unstable();
924-
suggestion.dedup_by(|(s1, m1), (s2, m2)| s1.source_equal(*s2) && m1 == m2);
923+
let mut seen = crate::FxHashSet::default();
924+
suggestion.retain(|(span, msg)| seen.insert((span.lo(), span.hi(), msg.clone())));
925925

926926
let parts = suggestion
927927
.into_iter()

0 commit comments

Comments
 (0)