about summary refs log tree commit diff
path: root/compiler/rustc_expand/src/errors.rs
diff options
context:
space:
mode:
authorxizheyin <xizheyin@smail.nju.edu.cn>2025-05-27 17:29:17 +0800
committerxizheyin <xizheyin@smail.nju.edu.cn>2025-06-09 17:10:58 +0800
commitb4ba017c3306bbdb8f3da3dff80e58ff3ed9a1ab (patch)
treeaea83af1eebf091023c1da5cfdc993ad6e2bea1d /compiler/rustc_expand/src/errors.rs
parentc2986eed43be1d33b07207dc098b2392eea57d61 (diff)
downloadrust-b4ba017c3306bbdb8f3da3dff80e58ff3ed9a1ab.tar.gz
rust-b4ba017c3306bbdb8f3da3dff80e58ff3ed9a1ab.zip
Note the version and PR of removed features when using it
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
Diffstat (limited to 'compiler/rustc_expand/src/errors.rs')
-rw-r--r--compiler/rustc_expand/src/errors.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/rustc_expand/src/errors.rs b/compiler/rustc_expand/src/errors.rs
index 89bdc7b6dfa..ec0af67c046 100644
--- a/compiler/rustc_expand/src/errors.rs
+++ b/compiler/rustc_expand/src/errors.rs
@@ -154,12 +154,16 @@ pub(crate) struct HelperAttributeNameInvalid {
 
 #[derive(Diagnostic)]
 #[diag(expand_feature_removed, code = E0557)]
+#[note]
 pub(crate) struct FeatureRemoved<'a> {
     #[primary_span]
     #[label]
     pub span: Span,
     #[subdiagnostic]
     pub reason: Option<FeatureRemovedReason<'a>>,
+    pub removed_rustc_version: &'a str,
+    pub current_rustc_version: &'a str,
+    pub pull_note: String,
 }
 
 #[derive(Subdiagnostic)]