@@ -54,8 +54,10 @@ macro_rules! declare_features {
54
54
#[ derive( Clone , Default , Debug ) ]
55
55
pub struct Features {
56
56
/// `#![feature]` attrs for language features, for error reporting.
57
+ /// "declared" here means that the feature is actually enabled in the current crate.
57
58
pub declared_lang_features: Vec <( Symbol , Span , Option <Symbol >) >,
58
59
/// `#![feature]` attrs for non-language (library) features.
60
+ /// "declared" here means that the feature is actually enabled in the current crate.
59
61
pub declared_lib_features: Vec <( Symbol , Span ) >,
60
62
/// `declared_lang_features` + `declared_lib_features`.
61
63
pub declared_features: FxHashSet <Symbol >,
@@ -125,9 +127,16 @@ macro_rules! declare_features {
125
127
$(
126
128
sym:: $feature => status_to_enum!( $status) == FeatureStatus :: Internal ,
127
129
) *
128
- // Accepted/removed features aren't in this file but are never internal
129
- // (a removed feature might have been internal, but that's now irrelevant).
130
- _ if self . declared_features. contains( & feature) => false ,
130
+ _ if self . declared_features. contains( & feature) => {
131
+ // This could be accepted/removed, or a libs feature.
132
+ // Accepted/removed features aren't in this file but are never internal
133
+ // (a removed feature might have been internal, but that's now irrelevant).
134
+ // Libs features are internal if they end in `_internal` or `_internals`.
135
+ // We just always test the name; it's not a big deal if we accidentally hit
136
+ // an accepted/removed lang feature that way.
137
+ let name = feature. as_str( ) ;
138
+ name. ends_with( "_internal" ) || name. ends_with( "_internals" )
139
+ }
131
140
_ => panic!( "`{}` was not listed in `declare_features`" , feature) ,
132
141
}
133
142
}
@@ -207,9 +216,6 @@ declare_features! (
207
216
( internal, test_2018_feature, "1.31.0" , None , Some ( Edition :: Edition2018 ) ) ,
208
217
/// Added for testing unstable lints; perma-unstable.
209
218
( internal, test_unstable_lint, "1.60.0" , None , None ) ,
210
- /// Allows non-`unsafe` —and thus, unsound— access to `Pin` constructions.
211
- /// Marked `internal` since perma-unstable and unsound.
212
- ( internal, unsafe_pin_internals, "1.60.0" , None , None ) ,
213
219
/// Use for stable + negative coherence and strict coherence depending on trait's
214
220
/// rustc_strict_coherence value.
215
221
( unstable, with_negative_coherence, "1.60.0" , None , None ) ,
0 commit comments