about summary refs log tree commit diff
path: root/compiler/rustc_errors/src/diagnostic.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-04-10 14:24:19 +0200
committerRalf Jung <post@ralfj.de>2025-04-10 14:24:19 +0200
commitf69ea4d82fdbf0fefc36118071bb69ec6253a285 (patch)
tree351b40fa66750fb4eac0449318a360cf1167efd3 /compiler/rustc_errors/src/diagnostic.rs
parent830c58be89e4717ca2c1e08f17d1e027707334e9 (diff)
parent7d7de5bf3c3cbf9c2c5bbc5cbfb9197a8a427d35 (diff)
downloadrust-f69ea4d82fdbf0fefc36118071bb69ec6253a285.tar.gz
rust-f69ea4d82fdbf0fefc36118071bb69ec6253a285.zip
Merge from rustc
Diffstat (limited to 'compiler/rustc_errors/src/diagnostic.rs')
-rw-r--r--compiler/rustc_errors/src/diagnostic.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/rustc_errors/src/diagnostic.rs b/compiler/rustc_errors/src/diagnostic.rs
index 794502d7aae..bd13c413a4d 100644
--- a/compiler/rustc_errors/src/diagnostic.rs
+++ b/compiler/rustc_errors/src/diagnostic.rs
@@ -647,9 +647,9 @@ impl<'a, G: EmissionGuarantee> Diag<'a, G> {
     #[rustc_lint_diagnostics]
     pub fn note_expected_found(
         &mut self,
-        expected_label: &dyn fmt::Display,
+        expected_label: &str,
         expected: DiagStyledString,
-        found_label: &dyn fmt::Display,
+        found_label: &str,
         found: DiagStyledString,
     ) -> &mut Self {
         self.note_expected_found_extra(
@@ -665,9 +665,9 @@ impl<'a, G: EmissionGuarantee> Diag<'a, G> {
     #[rustc_lint_diagnostics]
     pub fn note_expected_found_extra(
         &mut self,
-        expected_label: &dyn fmt::Display,
+        expected_label: &str,
         expected: DiagStyledString,
-        found_label: &dyn fmt::Display,
+        found_label: &str,
         found: DiagStyledString,
         expected_extra: DiagStyledString,
         found_extra: DiagStyledString,