about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorJacob Pratt <jacob@jhpratt.dev>2022-06-14 19:11:24 -0400
committerJacob Pratt <jacob@jhpratt.dev>2022-06-14 19:46:13 -0400
commitfb05b53745824a2633f49a8eef6ea9739bbf1cc5 (patch)
tree9889214f1a4411e3ae09c056251efa1f5d8942d1 /compiler/rustc_feature/src
parent1f34da9ec8a85b6f86c5fa1c121ab6f88f2f4966 (diff)
downloadrust-fb05b53745824a2633f49a8eef6ea9739bbf1cc5.tar.gz
rust-fb05b53745824a2633f49a8eef6ea9739bbf1cc5.zip
Remove `rustc_deprecated` diagnostics
Diffstat (limited to 'compiler/rustc_feature/src')
-rw-r--r--compiler/rustc_feature/src/builtin_attrs.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/rustc_feature/src/builtin_attrs.rs b/compiler/rustc_feature/src/builtin_attrs.rs
index 34c53597dde..d4452a79dfb 100644
--- a/compiler/rustc_feature/src/builtin_attrs.rs
+++ b/compiler/rustc_feature/src/builtin_attrs.rs
@@ -489,11 +489,6 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
     // ==========================================================================
 
     ungated!(feature, CrateLevel, template!(List: "name1, name2, ..."), DuplicatesOk),
-    // FIXME(jhpratt) remove this eventually
-    ungated!(
-        rustc_deprecated, Normal,
-        template!(List: r#"since = "version", note = "...""#), ErrorFollowing
-    ),
     // DuplicatesOk since it has its own validation
     ungated!(
         stable, Normal, template!(List: r#"feature = "name", since = "version""#), DuplicatesOk,