Skip to main content

rustc_ast_passes/
feature_gate.rs

1use rustc_ast::visit::{self, AssocCtxt, FnKind, Visitor};
2use rustc_ast::{self as ast, AttrVec, GenericBound, NodeId, PatKind, attr, token};
3use rustc_attr_parsing::AttributeParser;
4use rustc_errors::msg;
5use rustc_feature::Features;
6use rustc_hir::Attribute;
7use rustc_hir::attrs::AttributeKind;
8use rustc_session::Session;
9use rustc_session::diagnostics::{feature_err, feature_warn};
10use rustc_span::{Span, Spanned, Symbol, sym};
11
12use crate::diagnostics;
13
14/// The common case.
15macro_rules! gate {
16    ($visitor:expr, $feature:ident, $span:expr, $explain:expr $(, $help:expr)?) => {{
17        if !$visitor.features.$feature() && !$span.allows_unstable(sym::$feature) {
18            feature_err($visitor.sess, sym::$feature, $span, $explain)
19                $(.with_help($help))?
20                .emit();
21        }
22    }};
23}
24
25/// The unusual case, where the `has_feature` condition is non-standard.
26macro_rules! gate_alt {
27    ($visitor:expr, $has_feature:expr, $name:expr, $span:expr, $explain:expr $(, $notes:expr)?) => {{
28        if !$has_feature && !$span.allows_unstable($name) {
29            #[allow(unused_mut)]
30            let mut diag = feature_err($visitor.sess, $name, $span, $explain);
31            $(for &note in $notes { diag.note(note); })?
32            diag.emit();
33        }
34    }};
35}
36
37/// The case involving a multispan.
38macro_rules! gate_multi {
39    ($visitor:expr, $feature:ident, $spans:expr, $explain:expr) => {{
40        if !$visitor.features.$feature() {
41            let spans: Vec<_> =
42                $spans.filter(|span| !span.allows_unstable(sym::$feature)).collect();
43            if !spans.is_empty() {
44                feature_err($visitor.sess, sym::$feature, spans, $explain).emit();
45            }
46        }
47    }};
48}
49
50pub fn check_attribute(attr: &ast::Attribute, sess: &Session, features: &Features) {
51    PostExpansionVisitor { sess, features }.visit_attribute(attr)
52}
53
54struct PostExpansionVisitor<'a> {
55    sess: &'a Session,
56
57    // `sess` contains a `Features`, but this might not be that one.
58    features: &'a Features,
59}
60
61// -----------------------------------------------------------------------------
62// POST-EXPANSION FEATURE GATES FOR UNSTABLE ATTRIBUTES ETC.
63// **LEGACY**  POST-EXPANSION FEATURE GATES FOR UNSTABLE SYNTAX  **LEGACY**
64// -----------------------------------------------------------------------------
65
66// IMPORTANT: Don't add any new post-expansion feature gates for new unstable syntax!
67//            It's a legacy mechanism for them.
68//            Instead, register a pre-expansion feature gate using `gate_all` in fn `check_crate`.
69
70impl<'a> PostExpansionVisitor<'a> {
71    /// Feature gate `impl Trait` inside `type Alias = $type_expr;`.
72    fn check_impl_trait(&self, ty: &ast::Ty, in_associated_ty: bool) {
73        struct ImplTraitVisitor<'a> {
74            vis: &'a PostExpansionVisitor<'a>,
75            in_associated_ty: bool,
76        }
77        impl Visitor<'_> for ImplTraitVisitor<'_> {
78            fn visit_ty(&mut self, ty: &ast::Ty) {
79                if let ast::TyKind::ImplTrait(..) = ty.kind {
80                    if self.in_associated_ty {
81                        {
    if !self.vis.features.impl_trait_in_assoc_type() &&
            !ty.span.allows_unstable(sym::impl_trait_in_assoc_type) {
        feature_err(self.vis.sess, sym::impl_trait_in_assoc_type, ty.span,
                "`impl Trait` in associated types is unstable").emit();
    }
};gate!(
82                            self.vis,
83                            impl_trait_in_assoc_type,
84                            ty.span,
85                            "`impl Trait` in associated types is unstable"
86                        );
87                    } else {
88                        {
    if !self.vis.features.type_alias_impl_trait() &&
            !ty.span.allows_unstable(sym::type_alias_impl_trait) {
        feature_err(self.vis.sess, sym::type_alias_impl_trait, ty.span,
                "`impl Trait` in type aliases is unstable").emit();
    }
};gate!(
89                            self.vis,
90                            type_alias_impl_trait,
91                            ty.span,
92                            "`impl Trait` in type aliases is unstable"
93                        );
94                    }
95                }
96                visit::walk_ty(self, ty);
97            }
98
99            fn visit_anon_const(&mut self, _: &ast::AnonConst) -> Self::Result {
100                // We don't walk the anon const because it crosses a conceptual boundary: We're no
101                // longer "inside" the original type.
102                // Brittle: We assume that the callers of `check_impl_trait` will later recurse into
103                // the items found in the AnonConst to look for nested TyAliases.
104            }
105        }
106        ImplTraitVisitor { vis: self, in_associated_ty }.visit_ty(ty);
107    }
108
109    fn check_late_bound_lifetime_defs(&self, params: &[ast::GenericParam]) {
110        // Check only lifetime parameters are present and that the
111        // generic parameters that are present have no bounds.
112        let non_lt_param_spans = params.iter().filter_map(|param| match param.kind {
113            ast::GenericParamKind::Lifetime { .. } => None,
114            _ => Some(param.ident.span),
115        });
116        {
    if !(&self).features.non_lifetime_binders() {
        let spans: Vec<_> =
            non_lt_param_spans.filter(|span|
                        !span.allows_unstable(sym::non_lifetime_binders)).collect();
        if !spans.is_empty() {
            feature_err((&self).sess, sym::non_lifetime_binders, spans,
                    rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("only lifetime parameters can be used in this context"))).emit();
        }
    }
};gate_multi!(
117            &self,
118            non_lifetime_binders,
119            non_lt_param_spans,
120            msg!("only lifetime parameters can be used in this context")
121        );
122
123        // FIXME(non_lifetime_binders): Const bound params are pretty broken.
124        // Let's keep users from using this feature accidentally.
125        if self.features.non_lifetime_binders() {
126            let const_param_spans: Vec<_> = params
127                .iter()
128                .filter_map(|param| match param.kind {
129                    ast::GenericParamKind::Const { .. } => Some(param.ident.span),
130                    _ => None,
131                })
132                .collect();
133
134            if !const_param_spans.is_empty() {
135                self.sess.dcx().emit_err(diagnostics::ForbiddenConstParam { const_param_spans });
136            }
137        }
138
139        for param in params {
140            if !param.bounds.is_empty() {
141                let spans: Vec<_> = param.bounds.iter().map(|b| b.span()).collect();
142                if param.bounds.iter().any(|bound| #[allow(non_exhaustive_omitted_patterns)] match bound {
    GenericBound::Trait(_) => true,
    _ => false,
}matches!(bound, GenericBound::Trait(_))) {
143                    // Issue #149695
144                    // Abort immediately otherwise items defined in complex bounds will be lowered into HIR,
145                    // which will cause ICEs when errors of the items visit unlowered parents.
146                    self.sess.dcx().emit_fatal(diagnostics::ForbiddenBound { spans });
147                } else {
148                    self.sess.dcx().emit_err(diagnostics::ForbiddenBound { spans });
149                }
150            }
151        }
152    }
153}
154
155impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
156    fn visit_attribute(&mut self, attr: &ast::Attribute) {
157        // Check unstable flavors of the `#[doc]` attribute.
158        if attr.has_name(sym::doc) {
159            for meta_item_inner in attr.meta_item_list().unwrap_or_default() {
160                macro_rules! gate_doc { ($($s:literal { $($name:ident => $feature:ident)* })*) => {
161                    $($(if meta_item_inner.has_name(sym::$name) {
162                        let msg = concat!("`#[doc(", stringify!($name), ")]` is ", $s);
163                        gate!(self, $feature, attr.span, msg);
164                    })*)*
165                }}
166
167                if meta_item_inner.has_name(sym::search_unbox) {
    let msg = "`#[doc(search_unbox)]` is meant for internal use only";
    {
        if !self.features.rustdoc_internals() &&
                !attr.span.allows_unstable(sym::rustdoc_internals) {
            feature_err(self.sess, sym::rustdoc_internals, attr.span,
                    msg).emit();
        }
    };
};gate_doc!(
168                    "experimental" {
169                        cfg => doc_cfg
170                        auto_cfg => doc_cfg
171                        masked => doc_masked
172                        notable_trait => doc_notable_trait
173                    }
174                    "meant for internal use only" {
175                        attribute => rustdoc_internals
176                        keyword => rustdoc_internals
177                        fake_variadic => rustdoc_internals
178                        search_unbox => rustdoc_internals
179                    }
180                );
181            }
182        }
183    }
184
185    fn visit_item(&mut self, i: &'a ast::Item) {
186        match &i.kind {
187            ast::ItemKind::ForeignMod(_foreign_module) => {
188                // handled during lowering
189            }
190            ast::ItemKind::Impl(ast::Impl { of_trait: Some(of_trait), .. }) => {
191                if let ast::ImplPolarity::Negative(span) = of_trait.polarity {
192                    {
    if !self.features.negative_impls() &&
            !span.to(of_trait.trait_ref.path.span).allows_unstable(sym::negative_impls)
        {
        feature_err(self.sess, sym::negative_impls,
                    span.to(of_trait.trait_ref.path.span),
                    "negative impls are experimental").with_help("use marker types for now").emit();
    }
};gate!(
193                        self,
194                        negative_impls,
195                        span.to(of_trait.trait_ref.path.span),
196                        "negative impls are experimental",
197                        "use marker types for now"
198                    );
199                }
200
201                if let ast::Defaultness::Default(_) = of_trait.defaultness {
202                    {
    if !self.features.specialization() &&
            !i.span.allows_unstable(sym::specialization) {
        feature_err(self.sess, sym::specialization, i.span,
                "specialization is experimental").emit();
    }
};gate!(self, specialization, i.span, "specialization is experimental");
203                }
204            }
205
206            ast::ItemKind::Trait(ast::Trait { is_auto: ast::IsAuto::Yes, .. }) => {
207                {
    if !self.features.auto_traits() &&
            !i.span.allows_unstable(sym::auto_traits) {
        feature_err(self.sess, sym::auto_traits, i.span,
                "auto traits are experimental and possibly buggy").emit();
    }
};gate!(self, auto_traits, i.span, "auto traits are experimental and possibly buggy");
208            }
209
210            ast::ItemKind::TraitAlias(..) => {
211                {
    if !self.features.trait_alias() &&
            !i.span.allows_unstable(sym::trait_alias) {
        feature_err(self.sess, sym::trait_alias, i.span,
                "trait aliases are experimental").emit();
    }
};gate!(self, trait_alias, i.span, "trait aliases are experimental");
212            }
213
214            ast::ItemKind::MacroDef(_, ast::MacroDef { macro_rules: false, .. }) => {
215                let msg = "`macro` is experimental";
216                {
    if !self.features.decl_macro() && !i.span.allows_unstable(sym::decl_macro)
        {
        feature_err(self.sess, sym::decl_macro, i.span, msg).emit();
    }
};gate!(self, decl_macro, i.span, msg);
217            }
218
219            ast::ItemKind::TyAlias(ast::TyAlias { ty: Some(ty), .. }) => {
220                self.check_impl_trait(ty, false)
221            }
222            ast::ItemKind::Const(ast::ConstItem {
223                kind: ast::ConstItemKind::TypeConst, ..
224            }) => {
225                // Make sure this is only allowed if the feature gate is enabled.
226                // #![feature(min_generic_const_args)]
227                {
    if !self.features.min_generic_const_args() &&
            !i.span.allows_unstable(sym::min_generic_const_args) {
        feature_err(self.sess, sym::min_generic_const_args, i.span,
                "top-level `type const` are unstable").emit();
    }
};gate!(self, min_generic_const_args, i.span, "top-level `type const` are unstable");
228            }
229
230            _ => {}
231        }
232
233        visit::walk_item(self, i);
234    }
235
236    fn visit_foreign_item(&mut self, i: &'a ast::ForeignItem) {
237        match i.kind {
238            ast::ForeignItemKind::Fn(..) | ast::ForeignItemKind::Static(..) => {
239                let link_name = attr::first_attr_value_str_by_name(&i.attrs, sym::link_name);
240                let links_to_llvm = link_name.is_some_and(|val| val.as_str().starts_with("llvm."));
241                if links_to_llvm {
242                    {
    if !self.features.link_llvm_intrinsics() &&
            !i.span.allows_unstable(sym::link_llvm_intrinsics) {
        feature_err(self.sess, sym::link_llvm_intrinsics, i.span,
                "linking to LLVM intrinsics is experimental").emit();
    }
};gate!(
243                        self,
244                        link_llvm_intrinsics,
245                        i.span,
246                        "linking to LLVM intrinsics is experimental"
247                    );
248                }
249            }
250            ast::ForeignItemKind::TyAlias(..) => {
251                {
    if !self.features.extern_types() &&
            !i.span.allows_unstable(sym::extern_types) {
        feature_err(self.sess, sym::extern_types, i.span,
                "extern types are experimental").emit();
    }
};gate!(self, extern_types, i.span, "extern types are experimental");
252            }
253            ast::ForeignItemKind::MacCall(..) => {}
254        }
255
256        visit::walk_item(self, i)
257    }
258
259    fn visit_ty(&mut self, ty: &'a ast::Ty) {
260        match &ty.kind {
261            ast::TyKind::FnPtr(fn_ptr_ty) => {
262                // Function pointers cannot be `const`
263                self.check_late_bound_lifetime_defs(&fn_ptr_ty.generic_params);
264            }
265            ast::TyKind::Never => {
266                {
    if !self.features.never_type() &&
            !ty.span.allows_unstable(sym::never_type) {
        feature_err(self.sess, sym::never_type, ty.span,
                "the `!` type is experimental").emit();
    }
};gate!(self, never_type, ty.span, "the `!` type is experimental");
267            }
268            ast::TyKind::Pat(..) => {
269                {
    if !self.features.pattern_types() &&
            !ty.span.allows_unstable(sym::pattern_types) {
        feature_err(self.sess, sym::pattern_types, ty.span,
                "pattern types are unstable").emit();
    }
};gate!(self, pattern_types, ty.span, "pattern types are unstable");
270            }
271            ast::TyKind::View(..) => {
272                {
    if !self.features.view_types() &&
            !ty.span.allows_unstable(sym::view_types) {
        feature_err(self.sess, sym::view_types, ty.span,
                "view types are unstable").emit();
    }
};gate!(self, view_types, ty.span, "view types are unstable");
273            }
274            _ => {}
275        }
276        visit::walk_ty(self, ty)
277    }
278
279    fn visit_where_predicate_kind(&mut self, kind: &'a ast::WherePredicateKind) {
280        if let ast::WherePredicateKind::BoundPredicate(bound) = kind {
281            // A type bound (e.g., `for<'c> Foo: Send + Clone + 'c`).
282            self.check_late_bound_lifetime_defs(&bound.bound_generic_params);
283        }
284        visit::walk_where_predicate_kind(self, kind);
285    }
286
287    fn visit_fn_ret_ty(&mut self, ret_ty: &'a ast::FnRetTy) {
288        if let ast::FnRetTy::Ty(output_ty) = ret_ty {
289            if let ast::TyKind::Never = output_ty.kind {
290                // Do nothing.
291            } else {
292                self.visit_ty(output_ty)
293            }
294        }
295    }
296
297    fn visit_generic_args(&mut self, args: &'a ast::GenericArgs) {
298        // This check needs to happen here because the never type can be returned from a function,
299        // but cannot be used in any other context. If this check was in `visit_fn_ret_ty`, it
300        // include both functions and generics like `impl Fn() -> !`.
301        if let ast::GenericArgs::Parenthesized(generic_args) = args
302            && let ast::FnRetTy::Ty(ref ty) = generic_args.output
303            && #[allow(non_exhaustive_omitted_patterns)] match ty.kind {
    ast::TyKind::Never => true,
    _ => false,
}matches!(ty.kind, ast::TyKind::Never)
304        {
305            {
    if !self.features.never_type() &&
            !ty.span.allows_unstable(sym::never_type) {
        feature_err(self.sess, sym::never_type, ty.span,
                "the `!` type is experimental").emit();
    }
};gate!(self, never_type, ty.span, "the `!` type is experimental");
306        }
307        visit::walk_generic_args(self, args);
308    }
309
310    fn visit_expr(&mut self, e: &'a ast::Expr) {
311        match e.kind {
312            ast::ExprKind::TryBlock(_, None) => {
313                // `try { ... }` is old and is only gated post-expansion here.
314                {
    if !self.features.try_blocks() && !e.span.allows_unstable(sym::try_blocks)
        {
        feature_err(self.sess, sym::try_blocks, e.span,
                "`try` expression is experimental").emit();
    }
};gate!(self, try_blocks, e.span, "`try` expression is experimental");
315            }
316            ast::ExprKind::TryBlock(_, Some(_)) => {
317                // `try_blocks_heterogeneous` is new, and gated pre-expansion instead.
318            }
319            ast::ExprKind::Lit(token::Lit {
320                kind: token::LitKind::Float | token::LitKind::Integer,
321                suffix,
322                ..
323            }) => match suffix {
324                Some(sym::f16) => {
325                    {
    if !self.features.f16() && !e.span.allows_unstable(sym::f16) {
        feature_err(self.sess, sym::f16, e.span,
                "the type `f16` is unstable").emit();
    }
}gate!(self, f16, e.span, "the type `f16` is unstable")
326                }
327                Some(sym::f128) => {
328                    {
    if !self.features.f128() && !e.span.allows_unstable(sym::f128) {
        feature_err(self.sess, sym::f128, e.span,
                "the type `f128` is unstable").emit();
    }
}gate!(self, f128, e.span, "the type `f128` is unstable")
329                }
330                _ => (),
331            },
332            _ => {}
333        }
334        visit::walk_expr(self, e)
335    }
336
337    fn visit_pat(&mut self, pattern: &'a ast::Pat) {
338        match &pattern.kind {
339            PatKind::Slice(pats) => {
340                for pat in pats {
341                    let inner_pat = match &pat.kind {
342                        PatKind::Ident(.., Some(pat)) => pat,
343                        _ => pat,
344                    };
345                    if let PatKind::Range(Some(_), None, Spanned { .. }) = inner_pat.kind {
346                        {
    if !self.features.half_open_range_patterns_in_slices() &&
            !pat.span.allows_unstable(sym::half_open_range_patterns_in_slices)
        {
        feature_err(self.sess, sym::half_open_range_patterns_in_slices,
                pat.span, "`X..` patterns in slices are experimental").emit();
    }
};gate!(
347                            self,
348                            half_open_range_patterns_in_slices,
349                            pat.span,
350                            "`X..` patterns in slices are experimental"
351                        );
352                    }
353                }
354            }
355            PatKind::Box(..) => {
356                {
    if !self.features.box_patterns() &&
            !pattern.span.allows_unstable(sym::box_patterns) {
        feature_err(self.sess, sym::box_patterns, pattern.span,
                "box pattern syntax is experimental").emit();
    }
};gate!(self, box_patterns, pattern.span, "box pattern syntax is experimental");
357            }
358            _ => {}
359        }
360        visit::walk_pat(self, pattern)
361    }
362
363    fn visit_poly_trait_ref(&mut self, t: &'a ast::PolyTraitRef) {
364        self.check_late_bound_lifetime_defs(&t.bound_generic_params);
365        visit::walk_poly_trait_ref(self, t);
366    }
367
368    fn visit_fn(&mut self, fn_kind: FnKind<'a>, _: &AttrVec, _: Span, _: NodeId) {
369        if let Some(_header) = fn_kind.header() {
370            // Stability of const fn methods are covered in `visit_assoc_item` below.
371        }
372
373        if let FnKind::Closure(ast::ClosureBinder::For { generic_params, .. }, ..) = fn_kind {
374            self.check_late_bound_lifetime_defs(generic_params);
375        }
376
377        visit::walk_fn(self, fn_kind)
378    }
379
380    fn visit_assoc_item(&mut self, i: &'a ast::AssocItem, ctxt: AssocCtxt) {
381        let is_fn = match &i.kind {
382            ast::AssocItemKind::Fn(_) => true,
383            ast::AssocItemKind::Type(ast::TyAlias { ty, .. }) => {
384                if let (Some(_), AssocCtxt::Trait) = (ty, ctxt) {
385                    {
    if !self.features.associated_type_defaults() &&
            !i.span.allows_unstable(sym::associated_type_defaults) {
        feature_err(self.sess, sym::associated_type_defaults, i.span,
                "associated type defaults are unstable").emit();
    }
};gate!(
386                        self,
387                        associated_type_defaults,
388                        i.span,
389                        "associated type defaults are unstable"
390                    );
391                }
392                if let Some(ty) = ty {
393                    self.check_impl_trait(ty, true);
394                }
395                false
396            }
397            ast::AssocItemKind::Const(ast::ConstItem {
398                body,
399                kind: ast::ConstItemKind::TypeConst,
400                ..
401            }) => {
402                // Make sure this is only allowed if the feature gate is enabled.
403                // #![feature(min_generic_const_args)]
404                {
    if !self.features.min_generic_const_args() &&
            !i.span.allows_unstable(sym::min_generic_const_args) {
        feature_err(self.sess, sym::min_generic_const_args, i.span,
                "associated `type const` are unstable").emit();
    }
};gate!(self, min_generic_const_args, i.span, "associated `type const` are unstable");
405                // Make sure associated `type const` defaults in traits are only allowed
406                // if the feature gate is enabled.
407                // #![feature(associated_type_defaults)]
408                if ctxt == AssocCtxt::Trait && body.is_some() {
409                    {
    if !self.features.associated_type_defaults() &&
            !i.span.allows_unstable(sym::associated_type_defaults) {
        feature_err(self.sess, sym::associated_type_defaults, i.span,
                "associated type defaults are unstable").emit();
    }
};gate!(
410                        self,
411                        associated_type_defaults,
412                        i.span,
413                        "associated type defaults are unstable"
414                    );
415                }
416                false
417            }
418            _ => false,
419        };
420        if let ast::Defaultness::Default(_) = i.kind.defaultness() {
421            // Limit `min_specialization` to only specializing functions.
422            {
    if !(self.features.specialization() ||
                    (is_fn && self.features.min_specialization())) &&
            !i.span.allows_unstable(sym::specialization) {
        #[allow(unused_mut)]
        let mut diag =
            feature_err((&self).sess, sym::specialization, i.span,
                "specialization is experimental");
        diag.emit();
    }
};gate_alt!(
423                &self,
424                self.features.specialization() || (is_fn && self.features.min_specialization()),
425                sym::specialization,
426                i.span,
427                "specialization is experimental"
428            );
429        }
430        visit::walk_assoc_item(self, i, ctxt)
431    }
432}
433
434// -----------------------------------------------------------------------------
435
436pub fn check_crate(krate: &ast::Crate, sess: &Session, features: &Features) {
437    maybe_stage_features(sess, features, krate);
438    check_incompatible_features(sess, features);
439    check_dependent_features(sess, features);
440    check_new_solver_banned_features(sess, features);
441    check_features_requiring_new_solver(sess, features);
442
443    let mut visitor = PostExpansionVisitor { sess, features };
444
445    // -----------------------------------------------------------------------------
446    // PRE-EXPANSION FEATURE GATES FOR UNSTABLE SYNTAX
447    // -----------------------------------------------------------------------------
448
449    let spans = sess.psess.gated_spans.spans.borrow();
450    macro_rules! gate_all {
451        ($feature:ident, $explain:literal $(, $help:literal)?) => {
452            for &span in spans.get(&sym::$feature).into_flat_iter() {
453                gate!(visitor, $feature, span, $explain $(, $help)?);
454            }
455        };
456    }
457
458    // tidy-alphabetical-start
459    for &span in spans.get(&sym::async_for_loop).into_flat_iter() {
    {
        if !visitor.features.async_for_loop() &&
                !span.allows_unstable(sym::async_for_loop) {
            feature_err(visitor.sess, sym::async_for_loop, span,
                    "`for await` loops are experimental").emit();
        }
    };
};gate_all!(async_for_loop, "`for await` loops are experimental");
460    for &span in spans.get(&sym::builtin_syntax).into_flat_iter() {
    {
        if !visitor.features.builtin_syntax() &&
                !span.allows_unstable(sym::builtin_syntax) {
            feature_err(visitor.sess, sym::builtin_syntax, span,
                    "`builtin #` syntax is unstable").emit();
        }
    };
};gate_all!(builtin_syntax, "`builtin #` syntax is unstable");
461    for &span in spans.get(&sym::const_block_items).into_flat_iter() {
    {
        if !visitor.features.const_block_items() &&
                !span.allows_unstable(sym::const_block_items) {
            feature_err(visitor.sess, sym::const_block_items, span,
                    "const block items are experimental").emit();
        }
    };
};gate_all!(const_block_items, "const block items are experimental");
462    for &span in spans.get(&sym::const_closures).into_flat_iter() {
    {
        if !visitor.features.const_closures() &&
                !span.allows_unstable(sym::const_closures) {
            feature_err(visitor.sess, sym::const_closures, span,
                    "const closures are experimental").emit();
        }
    };
};gate_all!(const_closures, "const closures are experimental");
463    for &span in spans.get(&sym::const_trait_impl).into_flat_iter() {
    {
        if !visitor.features.const_trait_impl() &&
                !span.allows_unstable(sym::const_trait_impl) {
            feature_err(visitor.sess, sym::const_trait_impl, span,
                    "const trait impls are experimental").emit();
        }
    };
};gate_all!(const_trait_impl, "const trait impls are experimental");
464    for &span in spans.get(&sym::contracts).into_flat_iter() {
    {
        if !visitor.features.contracts() &&
                !span.allows_unstable(sym::contracts) {
            feature_err(visitor.sess, sym::contracts, span,
                    "contracts are incomplete").emit();
        }
    };
};gate_all!(contracts, "contracts are incomplete");
465    for &span in spans.get(&sym::contracts_internals).into_flat_iter() {
    {
        if !visitor.features.contracts_internals() &&
                !span.allows_unstable(sym::contracts_internals) {
            feature_err(visitor.sess, sym::contracts_internals, span,
                    "contract internal machinery is for internal use only").emit();
        }
    };
};gate_all!(contracts_internals, "contract internal machinery is for internal use only");
466    for &span in spans.get(&sym::coroutines).into_flat_iter() {
    {
        if !visitor.features.coroutines() &&
                !span.allows_unstable(sym::coroutines) {
            feature_err(visitor.sess, sym::coroutines, span,
                    "coroutine syntax is experimental").emit();
        }
    };
};gate_all!(coroutines, "coroutine syntax is experimental");
467    for &span in spans.get(&sym::default_field_values).into_flat_iter() {
    {
        if !visitor.features.default_field_values() &&
                !span.allows_unstable(sym::default_field_values) {
            feature_err(visitor.sess, sym::default_field_values, span,
                    "default values on fields are experimental").emit();
        }
    };
};gate_all!(default_field_values, "default values on fields are experimental");
468    for &span in spans.get(&sym::ergonomic_clones).into_flat_iter() {
    {
        if !visitor.features.ergonomic_clones() &&
                !span.allows_unstable(sym::ergonomic_clones) {
            feature_err(visitor.sess, sym::ergonomic_clones, span,
                    "ergonomic clones are experimental").emit();
        }
    };
};gate_all!(ergonomic_clones, "ergonomic clones are experimental");
469    for &span in spans.get(&sym::explicit_tail_calls).into_flat_iter() {
    {
        if !visitor.features.explicit_tail_calls() &&
                !span.allows_unstable(sym::explicit_tail_calls) {
            feature_err(visitor.sess, sym::explicit_tail_calls, span,
                    "`become` expression is experimental").emit();
        }
    };
};gate_all!(explicit_tail_calls, "`become` expression is experimental");
470    for &span in spans.get(&sym::final_associated_functions).into_flat_iter() {
    {
        if !visitor.features.final_associated_functions() &&
                !span.allows_unstable(sym::final_associated_functions) {
            feature_err(visitor.sess, sym::final_associated_functions, span,
                    "`final` on trait functions is experimental").emit();
        }
    };
};gate_all!(final_associated_functions, "`final` on trait functions is experimental");
471    for &span in spans.get(&sym::fn_delegation).into_flat_iter() {
    {
        if !visitor.features.fn_delegation() &&
                !span.allows_unstable(sym::fn_delegation) {
            feature_err(visitor.sess, sym::fn_delegation, span,
                    "functions delegation is not yet fully implemented").emit();
        }
    };
};gate_all!(fn_delegation, "functions delegation is not yet fully implemented");
472    for &span in spans.get(&sym::frontmatter).into_flat_iter() {
    {
        if !visitor.features.frontmatter() &&
                !span.allows_unstable(sym::frontmatter) {
            feature_err(visitor.sess, sym::frontmatter, span,
                    "frontmatters are experimental").emit();
        }
    };
};gate_all!(frontmatter, "frontmatters are experimental");
473    for &span in spans.get(&sym::gen_blocks).into_flat_iter() {
    {
        if !visitor.features.gen_blocks() &&
                !span.allows_unstable(sym::gen_blocks) {
            feature_err(visitor.sess, sym::gen_blocks, span,
                    "gen blocks are experimental").emit();
        }
    };
};gate_all!(gen_blocks, "gen blocks are experimental");
474    for &span in spans.get(&sym::generic_const_items).into_flat_iter() {
    {
        if !visitor.features.generic_const_items() &&
                !span.allows_unstable(sym::generic_const_items) {
            feature_err(visitor.sess, sym::generic_const_items, span,
                    "generic const items are experimental").emit();
        }
    };
};gate_all!(generic_const_items, "generic const items are experimental");
475    for &span in spans.get(&sym::global_registration).into_flat_iter() {
    {
        if !visitor.features.global_registration() &&
                !span.allows_unstable(sym::global_registration) {
            feature_err(visitor.sess, sym::global_registration, span,
                    "global registration is experimental").emit();
        }
    };
};gate_all!(global_registration, "global registration is experimental");
476    for &span in spans.get(&sym::guard_patterns).into_flat_iter() {
    {
        if !visitor.features.guard_patterns() &&
                !span.allows_unstable(sym::guard_patterns) {
            feature_err(visitor.sess, sym::guard_patterns, span,
                        "guard patterns are experimental").with_help("consider using match arm guards").emit();
        }
    };
};gate_all!(guard_patterns, "guard patterns are experimental", "consider using match arm guards");
477    for &span in spans.get(&sym::impl_restriction).into_flat_iter() {
    {
        if !visitor.features.impl_restriction() &&
                !span.allows_unstable(sym::impl_restriction) {
            feature_err(visitor.sess, sym::impl_restriction, span,
                    "`impl` restrictions are experimental").emit();
        }
    };
};gate_all!(impl_restriction, "`impl` restrictions are experimental");
478    for &span in spans.get(&sym::min_generic_const_args).into_flat_iter() {
    {
        if !visitor.features.min_generic_const_args() &&
                !span.allows_unstable(sym::min_generic_const_args) {
            feature_err(visitor.sess, sym::min_generic_const_args, span,
                    "unbraced const blocks as const args are experimental").emit();
        }
    };
};gate_all!(min_generic_const_args, "unbraced const blocks as const args are experimental");
479    for &span in spans.get(&sym::more_qualified_paths).into_flat_iter() {
    {
        if !visitor.features.more_qualified_paths() &&
                !span.allows_unstable(sym::more_qualified_paths) {
            feature_err(visitor.sess, sym::more_qualified_paths, span,
                    "usage of qualified paths in this context is experimental").emit();
        }
    };
};gate_all!(more_qualified_paths, "usage of qualified paths in this context is experimental");
480    for &span in spans.get(&sym::move_expr).into_flat_iter() {
    {
        if !visitor.features.move_expr() &&
                !span.allows_unstable(sym::move_expr) {
            feature_err(visitor.sess, sym::move_expr, span,
                    "`move(expr)` syntax is experimental").emit();
        }
    };
};gate_all!(move_expr, "`move(expr)` syntax is experimental");
481    for &span in spans.get(&sym::mut_ref).into_flat_iter() {
    {
        if !visitor.features.mut_ref() && !span.allows_unstable(sym::mut_ref)
            {
            feature_err(visitor.sess, sym::mut_ref, span,
                    "mutable by-reference bindings are experimental").emit();
        }
    };
};gate_all!(mut_ref, "mutable by-reference bindings are experimental");
482    for &span in spans.get(&sym::mut_restriction).into_flat_iter() {
    {
        if !visitor.features.mut_restriction() &&
                !span.allows_unstable(sym::mut_restriction) {
            feature_err(visitor.sess, sym::mut_restriction, span,
                    "`mut` restrictions are experimental").emit();
        }
    };
};gate_all!(mut_restriction, "`mut` restrictions are experimental");
483    for &span in spans.get(&sym::pin_ergonomics).into_flat_iter() {
    {
        if !visitor.features.pin_ergonomics() &&
                !span.allows_unstable(sym::pin_ergonomics) {
            feature_err(visitor.sess, sym::pin_ergonomics, span,
                    "pinned reference syntax is experimental").emit();
        }
    };
};gate_all!(pin_ergonomics, "pinned reference syntax is experimental");
484    for &span in spans.get(&sym::postfix_match).into_flat_iter() {
    {
        if !visitor.features.postfix_match() &&
                !span.allows_unstable(sym::postfix_match) {
            feature_err(visitor.sess, sym::postfix_match, span,
                    "postfix match is experimental").emit();
        }
    };
};gate_all!(postfix_match, "postfix match is experimental");
485    for &span in spans.get(&sym::return_type_notation).into_flat_iter() {
    {
        if !visitor.features.return_type_notation() &&
                !span.allows_unstable(sym::return_type_notation) {
            feature_err(visitor.sess, sym::return_type_notation, span,
                    "return type notation is experimental").emit();
        }
    };
};gate_all!(return_type_notation, "return type notation is experimental");
486    for &span in spans.get(&sym::splat).into_flat_iter() {
    {
        if !visitor.features.splat() && !span.allows_unstable(sym::splat) {
            feature_err(visitor.sess, sym::splat, span,
                        "`fn(#[splat] (a, ...))` is incomplete").with_help("call as func((a, ...)) instead").emit();
        }
    };
};gate_all!(splat, "`fn(#[splat] (a, ...))` is incomplete", "call as func((a, ...)) instead");
487    for &span in spans.get(&sym::super_let).into_flat_iter() {
    {
        if !visitor.features.super_let() &&
                !span.allows_unstable(sym::super_let) {
            feature_err(visitor.sess, sym::super_let, span,
                    "`super let` is experimental").emit();
        }
    };
};gate_all!(super_let, "`super let` is experimental");
488    for &span in spans.get(&sym::try_blocks_heterogeneous).into_flat_iter() {
    {
        if !visitor.features.try_blocks_heterogeneous() &&
                !span.allows_unstable(sym::try_blocks_heterogeneous) {
            feature_err(visitor.sess, sym::try_blocks_heterogeneous, span,
                    "`try bikeshed` expression is experimental").emit();
        }
    };
};gate_all!(try_blocks_heterogeneous, "`try bikeshed` expression is experimental");
489    for &span in spans.get(&sym::unnamed_enum_variants).into_flat_iter() {
    {
        if !visitor.features.unnamed_enum_variants() &&
                !span.allows_unstable(sym::unnamed_enum_variants) {
            feature_err(visitor.sess, sym::unnamed_enum_variants, span,
                    "unnamed enum variants are experimental").emit();
        }
    };
};gate_all!(unnamed_enum_variants, "unnamed enum variants are experimental");
490    for &span in spans.get(&sym::unsafe_binders).into_flat_iter() {
    {
        if !visitor.features.unsafe_binders() &&
                !span.allows_unstable(sym::unsafe_binders) {
            feature_err(visitor.sess, sym::unsafe_binders, span,
                    "unsafe binder types are experimental").emit();
        }
    };
};gate_all!(unsafe_binders, "unsafe binder types are experimental");
491    for &span in spans.get(&sym::unsafe_fields).into_flat_iter() {
    {
        if !visitor.features.unsafe_fields() &&
                !span.allows_unstable(sym::unsafe_fields) {
            feature_err(visitor.sess, sym::unsafe_fields, span,
                    "`unsafe` fields are experimental").emit();
        }
    };
};gate_all!(unsafe_fields, "`unsafe` fields are experimental");
492    for &span in spans.get(&sym::view_types).into_flat_iter() {
    {
        if !visitor.features.view_types() &&
                !span.allows_unstable(sym::view_types) {
            feature_err(visitor.sess, sym::view_types, span,
                    "view types are experimental").emit();
        }
    };
};gate_all!(view_types, "view types are experimental");
493    for &span in spans.get(&sym::where_clause_attrs).into_flat_iter() {
    {
        if !visitor.features.where_clause_attrs() &&
                !span.allows_unstable(sym::where_clause_attrs) {
            feature_err(visitor.sess, sym::where_clause_attrs, span,
                    "attributes in `where` clause are unstable").emit();
        }
    };
};gate_all!(where_clause_attrs, "attributes in `where` clause are unstable");
494    for &span in spans.get(&sym::yeet_expr).into_flat_iter() {
    {
        if !visitor.features.yeet_expr() &&
                !span.allows_unstable(sym::yeet_expr) {
            feature_err(visitor.sess, sym::yeet_expr, span,
                    "`do yeet` expression is experimental").emit();
        }
    };
};gate_all!(yeet_expr, "`do yeet` expression is experimental");
495    // tidy-alphabetical-end
496
497    for &span in spans.get(&sym::async_trait_bounds).into_flat_iter() {
    {
        if !visitor.features.async_trait_bounds() &&
                !span.allows_unstable(sym::async_trait_bounds) {
            feature_err(visitor.sess, sym::async_trait_bounds, span,
                        "`async` trait bounds are unstable").with_help("use the desugared name of the async trait, such as `AsyncFn`").emit();
        }
    };
};gate_all!(
498        async_trait_bounds,
499        "`async` trait bounds are unstable",
500        "use the desugared name of the async trait, such as `AsyncFn`"
501    );
502    for &span in spans.get(&sym::closure_lifetime_binder).into_flat_iter() {
    {
        if !visitor.features.closure_lifetime_binder() &&
                !span.allows_unstable(sym::closure_lifetime_binder) {
            feature_err(visitor.sess, sym::closure_lifetime_binder, span,
                        "`for<...>` binders for closures are experimental").with_help("consider removing `for<...>`").emit();
        }
    };
};gate_all!(
503        closure_lifetime_binder,
504        "`for<...>` binders for closures are experimental",
505        "consider removing `for<...>`"
506    );
507    for &span in
    spans.get(&sym::half_open_range_patterns_in_slices).into_flat_iter() {
    {
        if !visitor.features.half_open_range_patterns_in_slices() &&
                !span.allows_unstable(sym::half_open_range_patterns_in_slices)
            {
            feature_err(visitor.sess, sym::half_open_range_patterns_in_slices,
                    span,
                    "half-open range patterns in slices are unstable").emit();
        }
    };
};gate_all!(
508        half_open_range_patterns_in_slices,
509        "half-open range patterns in slices are unstable"
510    );
511
512    // `associated_const_equality` will be stabilized as part of `min_generic_const_args`.
513    for &span in spans.get(&sym::associated_const_equality).into_flat_iter() {
514        {
    if !visitor.features.min_generic_const_args() &&
            !span.allows_unstable(sym::min_generic_const_args) {
        feature_err(visitor.sess, sym::min_generic_const_args, span,
                "associated const equality is incomplete").emit();
    }
};gate!(visitor, min_generic_const_args, span, "associated const equality is incomplete");
515    }
516
517    // `mgca_type_const_syntax` is part of `min_generic_const_args` so if
518    // either or both are enabled we don't need to emit a feature error.
519    for &span in spans.get(&sym::mgca_type_const_syntax).into_flat_iter() {
520        if visitor.features.min_generic_const_args()
521            || visitor.features.mgca_type_const_syntax()
522            || span.allows_unstable(sym::min_generic_const_args)
523            || span.allows_unstable(sym::mgca_type_const_syntax)
524        {
525            continue;
526        }
527        feature_err(
528            visitor.sess,
529            sym::min_generic_const_args,
530            span,
531            "`type const` syntax is experimental",
532        )
533        .emit();
534    }
535
536    // Negative bounds are *super* internal. We require `-Zinternal-testing-features` *and*
537    // `#![feature(negative_bounds)]` to prevent proliferation. Under no circumstances do we
538    // want to advertise the flag and the feature name to users!
539    //
540    // IMPORTANT: If you intend on turning negative bounds into a public-facing feature, please
541    //            consult T-types and T-lang first! Do **not** just remove the `-Z` check!
542    //
543    // NOTE: `T: !Bound` means "`T` implements `Bound` negatively",
544    //       it does **not** mean "`T` doesn't implement `Bound` (positively or negatively)"!
545    //       The latter would be a SemVer hazard!
546    if !sess.opts.unstable_opts.internal_testing_features || !visitor.features.negative_bounds() {
547        for &span in spans.get(&sym::negative_bounds).into_flat_iter() {
548            sess.dcx().emit_err(diagnostics::NegativeBoundUnsupported { span });
549        }
550    }
551
552    if !visitor.features.never_patterns() {
553        for &span in spans.get(&sym::never_patterns).into_flat_iter() {
554            if span.allows_unstable(sym::never_patterns) {
555                continue;
556            }
557            // We gate two types of spans: the span of a `!` pattern, and the span of a
558            // match arm without a body. For the latter we want to give the user a normal
559            // error.
560            if let Ok("!") = sess.source_map().span_to_snippet(span).as_deref() {
561                feature_err(sess, sym::never_patterns, span, "`!` patterns are experimental")
562                    .emit();
563            } else {
564                let suggestion = span.shrink_to_hi();
565                sess.dcx().emit_err(diagnostics::MatchArmWithNoBody { span, suggestion });
566            }
567        }
568    }
569
570    // Yield exprs can be enabled either by `yield_expr`, by `coroutines` or by `gen_blocks`.
571    for &span in spans.get(&sym::yield_expr).into_flat_iter() {
572        if (!visitor.features.coroutines() && !span.allows_unstable(sym::coroutines))
573            && (!visitor.features.gen_blocks() && !span.allows_unstable(sym::gen_blocks))
574            && (!visitor.features.yield_expr() && !span.allows_unstable(sym::yield_expr))
575        {
576            // Only mentioned `yield_expr` in the diagnostic since that'll be sufficient.
577            // You can think of it as `coroutines` and `gen_blocks` implying `yield_expr`.
578            feature_err(visitor.sess, sym::yield_expr, span, "yield syntax is experimental").emit();
579        }
580    }
581
582    // -----------------------------------------------------------------------------
583    // **LEGACY**  SOFT PRE-EXPANSION FEATURE GATES FOR UNSTABLE SYNTAX  **LEGACY**
584    // -----------------------------------------------------------------------------
585
586    // IMPORTANT: Do not extend the list below! New syntax should go above and use `gate_all`.
587
588    // FIXME(#154045): Migrate all of these to erroring feature gates and
589    //                 remove the corresponding post-expansion feature gates.
590
591    macro_rules! soft_gate_all_legacy_dont_use {
592        ($feature:ident, $explain:literal) => {
593            for &span in spans.get(&sym::$feature).into_flat_iter() {
594                if !visitor.features.$feature() && !span.allows_unstable(sym::$feature) {
595                    feature_warn(&visitor.sess, sym::$feature, span, $explain);
596                }
597            }
598        };
599    }
600
601    // tidy-alphabetical-start
602    for &span in spans.get(&sym::auto_traits).into_flat_iter() {
    if !visitor.features.auto_traits() &&
            !span.allows_unstable(sym::auto_traits) {
        feature_warn(&visitor.sess, sym::auto_traits, span,
            "`auto` traits are unstable");
    }
};soft_gate_all_legacy_dont_use!(auto_traits, "`auto` traits are unstable");
603    for &span in spans.get(&sym::box_patterns).into_flat_iter() {
    if !visitor.features.box_patterns() &&
            !span.allows_unstable(sym::box_patterns) {
        feature_warn(&visitor.sess, sym::box_patterns, span,
            "box pattern syntax is experimental");
    }
};soft_gate_all_legacy_dont_use!(box_patterns, "box pattern syntax is experimental");
604    for &span in spans.get(&sym::decl_macro).into_flat_iter() {
    if !visitor.features.decl_macro() &&
            !span.allows_unstable(sym::decl_macro) {
        feature_warn(&visitor.sess, sym::decl_macro, span,
            "`macro` is experimental");
    }
};soft_gate_all_legacy_dont_use!(decl_macro, "`macro` is experimental");
605    for &span in spans.get(&sym::negative_impls).into_flat_iter() {
    if !visitor.features.negative_impls() &&
            !span.allows_unstable(sym::negative_impls) {
        feature_warn(&visitor.sess, sym::negative_impls, span,
            "negative impls are experimental");
    }
};soft_gate_all_legacy_dont_use!(negative_impls, "negative impls are experimental");
606    for &span in spans.get(&sym::specialization).into_flat_iter() {
    if !visitor.features.specialization() &&
            !span.allows_unstable(sym::specialization) {
        feature_warn(&visitor.sess, sym::specialization, span,
            "specialization is experimental");
    }
};soft_gate_all_legacy_dont_use!(specialization, "specialization is experimental");
607    for &span in spans.get(&sym::trait_alias).into_flat_iter() {
    if !visitor.features.trait_alias() &&
            !span.allows_unstable(sym::trait_alias) {
        feature_warn(&visitor.sess, sym::trait_alias, span,
            "trait aliases are experimental");
    }
};soft_gate_all_legacy_dont_use!(trait_alias, "trait aliases are experimental");
608    for &span in spans.get(&sym::try_blocks).into_flat_iter() {
    if !visitor.features.try_blocks() &&
            !span.allows_unstable(sym::try_blocks) {
        feature_warn(&visitor.sess, sym::try_blocks, span,
            "`try` blocks are unstable");
    }
};soft_gate_all_legacy_dont_use!(try_blocks, "`try` blocks are unstable");
609    // tidy-alphabetical-end
610
611    for &span in spans.get(&sym::min_specialization).into_flat_iter() {
612        if !visitor.features.specialization()
613            && !visitor.features.min_specialization()
614            && !span.allows_unstable(sym::specialization)
615            && !span.allows_unstable(sym::min_specialization)
616        {
617            feature_warn(visitor.sess, sym::specialization, span, "specialization is experimental");
618        }
619    }
620
621    // -----------------------------------------------------------------------------
622
623    visit::walk_crate(&mut visitor, krate);
624}
625
626fn maybe_stage_features(sess: &Session, features: &Features, krate: &ast::Crate) {
627    // checks if `#![feature]` has been used to enable any feature.
628    if sess.opts.unstable_features.is_nightly_build() {
629        return;
630    }
631    if features.enabled_features().is_empty() {
632        return;
633    }
634    let mut errored = false;
635
636    if let Some(Attribute::Parsed(AttributeKind::Feature(feature_idents, first_span))) =
637        AttributeParser::parse_limited(sess, &krate.attrs, &[sym::feature])
638    {
639        // `feature(...)` used on non-nightly. This is definitely an error.
640        let mut err = diagnostics::FeatureOnNonNightly {
641            span: first_span,
642            channel: ::core::option::Option::Some("nightly")option_env!("CFG_RELEASE_CHANNEL").unwrap_or("(unknown)"),
643            stable_features: ::alloc::vec::Vec::new()vec![],
644            sugg: None,
645        };
646
647        let mut all_stable = true;
648        for ident in feature_idents {
649            let name = ident.name;
650            let stable_since = features
651                .enabled_lang_features()
652                .iter()
653                .find(|feat| feat.gate_name == name)
654                .map(|feat| feat.stable_since)
655                .flatten();
656            if let Some(since) = stable_since {
657                err.stable_features.push(diagnostics::StableFeature { name, since });
658            } else {
659                all_stable = false;
660            }
661        }
662        if all_stable {
663            err.sugg = Some(first_span);
664        }
665        sess.dcx().emit_err(err);
666        errored = true;
667    }
668    // Just make sure we actually error if anything is listed in `enabled_features`.
669    if !errored { ::core::panicking::panic("assertion failed: errored") };assert!(errored);
670}
671
672fn check_incompatible_features(sess: &Session, features: &Features) {
673    let enabled_features = features.enabled_features_iter_stable_order();
674
675    for (f1, f2) in rustc_feature::INCOMPATIBLE_FEATURES
676        .iter()
677        .filter(|(f1, f2)| features.enabled(*f1) && features.enabled(*f2))
678    {
679        if let Some((f1_name, f1_span)) = enabled_features.clone().find(|(name, _)| name == f1)
680            && let Some((f2_name, f2_span)) = enabled_features.clone().find(|(name, _)| name == f2)
681        {
682            let spans = ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [f1_span, f2_span]))vec![f1_span, f2_span];
683            sess.dcx().emit_err(diagnostics::IncompatibleFeatures {
684                spans,
685                f1: f1_name,
686                f2: f2_name,
687            });
688        }
689    }
690}
691
692fn check_dependent_features(sess: &Session, features: &Features) {
693    for &(parent, children) in
694        rustc_feature::DEPENDENT_FEATURES.iter().filter(|(parent, _)| features.enabled(*parent))
695    {
696        if children.iter().any(|f| !features.enabled(*f)) {
697            let parent_span = features
698                .enabled_features_iter_stable_order()
699                .find_map(|(name, span)| (name == parent).then_some(span))
700                .unwrap();
701            // FIXME: should probably format this in fluent instead of here
702            let missing = children
703                .iter()
704                .filter(|f| !features.enabled(**f))
705                .map(|s| ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`{0}`", s.as_str()))
    })format!("`{}`", s.as_str()))
706                .intersperse(String::from(", "))
707                .collect();
708            sess.dcx().emit_err(diagnostics::MissingDependentFeatures {
709                parent_span,
710                parent,
711                missing,
712            });
713        }
714    }
715}
716
717fn check_new_solver_banned_features(sess: &Session, features: &Features) {
718    if !sess.opts.unstable_opts.next_solver.globally {
719        return;
720    }
721
722    // Ban GCE with the new solver, because it does not implement GCE correctly.
723    if let Some(gce_span) = features
724        .enabled_lang_features()
725        .iter()
726        .find(|feat| feat.gate_name == sym::generic_const_exprs)
727        .map(|feat| feat.attr_sp)
728    {
729        // Abort immediately, otherwise GCE can lower to `ConstKind::Expr`,
730        // which the new solver intentionally does not support.
731        #[allow(rustc::symbol_intern_string_literal)]
732        sess.dcx().emit_fatal(diagnostics::IncompatibleFeatures {
733            spans: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [gce_span]))vec![gce_span],
734            f1: Symbol::intern("-Znext-solver=globally"),
735            f2: sym::generic_const_exprs,
736        });
737    }
738}
739
740fn check_features_requiring_new_solver(sess: &Session, features: &Features) {
741    if sess.opts.unstable_opts.next_solver.globally {
742        return;
743    }
744
745    // Require the new solver with GCA, because the old solver can't implement GCA correctly as it
746    // does not support normalization obligations for free and inherent consts.
747    if let Some(gca_span) = features
748        .enabled_lang_features()
749        .iter()
750        .find(|feat| feat.gate_name == sym::generic_const_args)
751        .map(|feat| feat.attr_sp)
752    {
753        #[allow(rustc::symbol_intern_string_literal)]
754        sess.dcx().emit_err(diagnostics::MissingDependentFeatures {
755            parent_span: gca_span,
756            parent: sym::generic_const_args,
757            missing: String::from("-Znext-solver=globally"),
758        });
759    }
760}