diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 90cca3129dc..64f2510b790 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -313,9 +313,6 @@ declare_features! ( // Allows #[target_feature(...)] (active, target_feature, "1.15.0", None), - // Allow safe suggestions for potential type conversions. - (active, safe_suggestion, "1.0.0", Some(37384)), - // `extern "ptx-*" fn()` (active, abi_ptx, "1.15.0", None), diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs index b0da6647eb9..e2f7f921db2 100644 --- a/src/tools/tidy/src/features.rs +++ b/src/tools/tidy/src/features.rs @@ -165,7 +165,7 @@ pub fn check(path: &Path, bad: &mut bool) { // FIXME get this whitelist empty. let whitelist = vec![ - "abi_ptx", "simd", "safe_suggestion", "macro_reexport", + "abi_ptx", "simd", "macro_reexport", "more_struct_aliases", "static_recursion", "reflect", "quote", "cfg_target_has_atomic", "custom_attribute", "default_type_parameter_fallback", "pushpop_unsafe",