about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-10-28 14:27:42 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2016-12-20 11:37:15 +0100
commitc11fe553df269d6f47b4c48f5c47c08efdd373dc (patch)
treeec15b76f1c0a3338be520c9bdd83e5b4d0a4286e /src/libsyntax
parentb2d0ec0eb4cb468fefb66da7af67b9cf8132373e (diff)
downloadrust-c11fe553df269d6f47b4c48f5c47c08efdd373dc.tar.gz
rust-c11fe553df269d6f47b4c48f5c47c08efdd373dc.zip
Create check_ref method to allow to check coercion with & types
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index a176a1ddede..e04cc11f15e 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -652,12 +652,6 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG
                                                    "internal implementation detail",
                                                    cfg_fn!(rustc_attrs))),
 
-    ("safe_suggestion", Whitelisted, Gated(Stability::Unstable,
-                                           "safe_suggestion",
-                                           "the `#[safe_suggestion]` attribute \
-                                            is an experimental feature",
-                                           cfg_fn!(safe_suggestion))),
-
     // FIXME: #14408 whitelist docs since rustdoc looks at them
     ("doc", Whitelisted, Ungated),