about summary refs log tree commit diff
path: root/compiler/rustc_passes/src/errors.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2025-04-09 21:15:45 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2025-04-17 09:50:52 +1000
commit400e8e5dc819b1fa7f994fb60dbe8b5112ec3fd2 (patch)
treede93c7a1439a8869c653ed6df06c41e3025092c1 /compiler/rustc_passes/src/errors.rs
parent4be670f89b94aaeab04b0e52d0efd9c61f1bef9d (diff)
downloadrust-400e8e5dc819b1fa7f994fb60dbe8b5112ec3fd2.tar.gz
rust-400e8e5dc819b1fa7f994fb60dbe8b5112ec3fd2.zip
Fix attribute printing in an error.
The current code assumes that the attribute is just an identifier, and
so misprints paths.
Diffstat (limited to 'compiler/rustc_passes/src/errors.rs')
-rw-r--r--compiler/rustc_passes/src/errors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_passes/src/errors.rs b/compiler/rustc_passes/src/errors.rs
index 85eddafefcd..075927a54f8 100644
--- a/compiler/rustc_passes/src/errors.rs
+++ b/compiler/rustc_passes/src/errors.rs
@@ -1433,7 +1433,7 @@ pub(crate) struct UselessAssignment<'a> {
 #[derive(LintDiagnostic)]
 #[diag(passes_only_has_effect_on)]
 pub(crate) struct OnlyHasEffectOn {
-    pub attr_name: Symbol,
+    pub attr_name: String,
     pub target_name: String,
 }