]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_ast_passes/src/feature_gate.rs
Permit `#[deprecated]` in stdlib
[rust.git] / compiler / rustc_ast_passes / src / feature_gate.rs
index 6c44fb0df236377baef7a736a6425b12f87f4eef..097bd07c74ce8a5ba6dca07e3f11d9bb113c423e 100644 (file)
@@ -420,6 +420,24 @@ macro_rules! gate_modifier { ($($name:literal => $feature:ident)*) => {
                 }
             }
         }
+
+        // Emit errors for non-staged-api crates.
+        if !self.features.staged_api {
+            if attr.has_name(sym::rustc_deprecated)
+                || attr.has_name(sym::unstable)
+                || attr.has_name(sym::stable)
+                || attr.has_name(sym::rustc_const_unstable)
+                || attr.has_name(sym::rustc_const_stable)
+            {
+                struct_span_err!(
+                    self.sess,
+                    attr.span,
+                    E0734,
+                    "stability attributes may not be used outside of the standard library",
+                )
+                .emit();
+            }
+        }
     }
 
     fn visit_item(&mut self, i: &'a ast::Item) {