summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorJohannes Oertel <johannes.oertel@uni-due.de>2016-11-30 15:23:11 +0100
committerJohannes Oertel <johannes.oertel@uni-due.de>2016-11-30 15:51:04 +0100
commit7cbd18a690da89251390db373d499b1770f20753 (patch)
tree0fc7115cc9164b22a28c73ef7f031dacbce14611 /src/libsyntax
parent3abaf43f770a8bae23da474690e3841041219029 (diff)
downloadrust-7cbd18a690da89251390db373d499b1770f20753.tar.gz
rust-7cbd18a690da89251390db373d499b1770f20753.zip
Remove the `unmarked_api` feature
Closes #37981.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index aa6a29b78b0..52374f232de 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -153,10 +153,6 @@ declare_features! (
     // rustc internal
     (active, staged_api, "1.0.0", None),
 
-    // Allows using items which are missing stability attributes
-    // rustc internal
-    (active, unmarked_api, "1.0.0", None),
-
     // Allows using #![no_core]
     (active, no_core, "1.3.0", Some(29639)),
 
@@ -330,6 +326,9 @@ declare_features! (
     (removed, test_removed_feature, "1.0.0", None),
     (removed, visible_private_types, "1.0.0", None),
     (removed, unsafe_no_drop_flag, "1.0.0", None),
+    // Allows using items which are missing stability attributes
+    // rustc internal
+    (removed, unmarked_api, "1.0.0", None),
 );
 
 declare_features! (