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