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
194            _ => {}
195        }
196
197        visit::walk_item(self, i);
198    }
199
200    fn visit_foreign_item(&mut self, i: &'a ast::ForeignItem) {
201        match i.kind {
202            ast::ForeignItemKind::Fn(..) | ast::ForeignItemKind::Static(..) => {
203                let symbol_name = if let Some(link_name) =
204                    attr::first_attr_value_str_by_name(&i.attrs, sym::link_name)
205                {
206                    link_name
207                } else {
208                    i.kind.ident().unwrap().name
209                };
210
211                let name = symbol_name.as_str();
212                if name.starts_with("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                } else if name.starts_with("__enzyme_") {
220                    {
    if !self.features.link_enzyme_intrinsics() &&
            !i.span.allows_unstable(sym::link_enzyme_intrinsics) {
        feature_err(self.sess, sym::link_enzyme_intrinsics, i.span,
                "linking to Enzyme intrinsics is experimental").emit();
    }
};gate!(
221                        self,
222                        link_enzyme_intrinsics,
223                        i.span,
224                        "linking to Enzyme intrinsics is experimental"
225                    );
226                }
227            }
228            ast::ForeignItemKind::TyAlias(..) => {
229                {
    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");
230            }
231            ast::ForeignItemKind::MacCall(..) => {}
232        }
233
234        visit::walk_item(self, i)
235    }
236
237    fn visit_ty(&mut self, ty: &'a ast::Ty) {
238        match &ty.kind {
239            ast::TyKind::FnPtr(fn_ptr_ty) => {
240                // Function pointers cannot be `const`
241                self.check_late_bound_lifetime_defs(&fn_ptr_ty.generic_params);
242            }
243            ast::TyKind::Pat(..) => {
244                {
    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");
245            }
246            ast::TyKind::View(..) => {
247                {
    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");
248            }
249            _ => {}
250        }
251        visit::walk_ty(self, ty)
252    }
253
254    fn visit_where_predicate_kind(&mut self, kind: &'a ast::WherePredicateKind) {
255        if let ast::WherePredicateKind::BoundPredicate(bound) = kind {
256            // A type bound (e.g., `for<'c> Foo: Send + Clone + 'c`).
257            self.check_late_bound_lifetime_defs(&bound.bound_generic_params);
258        }
259        visit::walk_where_predicate_kind(self, kind);
260    }
261
262    fn visit_fn_ret_ty(&mut self, ret_ty: &'a ast::FnRetTy) {
263        if let ast::FnRetTy::Ty(output_ty) = ret_ty {
264            if let ast::TyKind::Never = output_ty.kind {
265                // Do nothing.
266            } else {
267                self.visit_ty(output_ty)
268            }
269        }
270    }
271
272    fn visit_generic_args(&mut self, args: &'a ast::GenericArgs) {
273        visit::walk_generic_args(self, args);
274    }
275
276    fn visit_expr(&mut self, e: &'a ast::Expr) {
277        match e.kind {
278            ast::ExprKind::TryBlock(_, None) => {
279                // `try { ... }` is old and is only gated post-expansion here.
280                {
    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");
281            }
282            ast::ExprKind::TryBlock(_, Some(_)) => {
283                // `try_blocks_heterogeneous` is new, and gated pre-expansion instead.
284            }
285            ast::ExprKind::Lit(token::Lit {
286                kind: token::LitKind::Float | token::LitKind::Integer,
287                suffix,
288                ..
289            }) => match suffix {
290                Some(sym::f16) => {
291                    {
    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")
292                }
293                Some(sym::f128) => {
294                    {
    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")
295                }
296                _ => (),
297            },
298            _ => {}
299        }
300        visit::walk_expr(self, e)
301    }
302
303    fn visit_pat(&mut self, pattern: &'a ast::Pat) {
304        match &pattern.kind {
305            PatKind::Slice(pats) => {
306                for pat in pats {
307                    let inner_pat = match &pat.kind {
308                        PatKind::Ident(.., Some(pat)) => pat,
309                        _ => pat,
310                    };
311                    if let PatKind::Range(Some(_), None, Spanned { .. }) = inner_pat.kind {
312                        {
    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!(
313                            self,
314                            half_open_range_patterns_in_slices,
315                            pat.span,
316                            "`X..` patterns in slices are experimental"
317                        );
318                    }
319                }
320            }
321            _ => {}
322        }
323        visit::walk_pat(self, pattern)
324    }
325
326    fn visit_poly_trait_ref(&mut self, t: &'a ast::PolyTraitRef) {
327        self.check_late_bound_lifetime_defs(&t.bound_generic_params);
328        visit::walk_poly_trait_ref(self, t);
329    }
330
331    fn visit_fn(&mut self, fn_kind: FnKind<'a>, _: &AttrVec, _: Span, _: NodeId) {
332        if let Some(_header) = fn_kind.header() {
333            // Stability of const fn methods are covered in `visit_assoc_item` below.
334        }
335
336        if let FnKind::Closure(ast::ClosureBinder::For { generic_params, .. }, ..) = fn_kind {
337            self.check_late_bound_lifetime_defs(generic_params);
338        }
339
340        visit::walk_fn(self, fn_kind)
341    }
342
343    fn visit_assoc_item(&mut self, i: &'a ast::AssocItem, ctxt: AssocCtxt) {
344        let is_fn = match &i.kind {
345            ast::AssocItemKind::Fn(_) => true,
346            ast::AssocItemKind::Type(ast::TyAlias { ty, .. }) => {
347                if let (Some(_), AssocCtxt::Trait) = (ty, ctxt) {
348                    {
    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!(
349                        self,
350                        associated_type_defaults,
351                        i.span,
352                        "associated type defaults are unstable"
353                    );
354                }
355                if let Some(ty) = ty {
356                    self.check_impl_trait(ty, true);
357                }
358                false
359            }
360            ast::AssocItemKind::Const(ast::ConstItem { body: Some(_), .. }) => {
361                if ctxt == AssocCtxt::Trait && attr::contains_name(&i.attrs, sym::rustc_always_gca)
362                {
363                    {
    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!(
364                        self,
365                        associated_type_defaults,
366                        i.span,
367                        "associated type defaults are unstable"
368                    );
369                }
370                false
371            }
372            _ => false,
373        };
374        if let ast::Defaultness::Default(_) = i.kind.defaultness() {
375            // Limit `min_specialization` to only specializing functions.
376            {
    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!(
377                &self,
378                self.features.specialization() || (is_fn && self.features.min_specialization()),
379                sym::specialization,
380                i.span,
381                "specialization is experimental"
382            );
383        }
384        visit::walk_assoc_item(self, i, ctxt)
385    }
386
387    fn visit_test_binder_forall(&mut self, forall: &'a ast::TestBinderForall) {
388        self.check_late_bound_lifetime_defs(&forall.generics.params);
389        visit::walk_test_binder_forall(self, forall)
390    }
391
392    fn visit_test_binder_exists(&mut self, exists: &'a ast::TestBinderExists) {
393        self.check_late_bound_lifetime_defs(&exists.params);
394        visit::walk_test_binder_exists(self, exists)
395    }
396
397    fn visit_test_binder_bound_type_constraint(
398        &mut self,
399        bound_type: &'a ast::TestBinderBoundTypeConstraint,
400    ) -> Self::Result {
401        self.check_late_bound_lifetime_defs(&bound_type.params);
402        visit::walk_test_binder_bound_type_constraint(self, bound_type)
403    }
404}
405
406// -----------------------------------------------------------------------------
407
408pub fn check_crate(krate: &ast::Crate, sess: &Session, features: &Features) {
409    maybe_stage_features(sess, features, krate);
410    check_incompatible_features(sess, features);
411    check_dependent_features(sess, features);
412    warn_next_solver_and_gce(sess, features);
413    check_features_requiring_new_solver(sess, features);
414
415    let mut visitor = PostExpansionVisitor { sess, features };
416
417    // -----------------------------------------------------------------------------
418    // PRE-EXPANSION FEATURE GATES FOR UNSTABLE SYNTAX
419    // -----------------------------------------------------------------------------
420
421    let spans = sess.psess.gated_spans.spans.borrow();
422    macro_rules! gate_all {
423        ($feature:ident, $explain:literal $(, $help:literal)?) => {
424            for &span in spans.get(&sym::$feature).into_flat_iter() {
425                gate!(visitor, $feature, span, $explain $(, $help)?);
426            }
427        };
428    }
429
430    // tidy-alphabetical-start
431    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");
432    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");
433    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");
434    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");
435    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");
436    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");
437    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");
438    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");
439    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");
440    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");
441    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");
442    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");
443    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");
444    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");
445    for &span in spans.get(&sym::gca_min_const_items).into_flat_iter() {
    {
        if !visitor.features.gca_min_const_items() &&
                !span.allows_unstable(sym::gca_min_const_items) {
            feature_err(visitor.sess, sym::gca_min_const_items, span,
                    "unbraced const blocks as const args are experimental").emit();
        }
    };
};gate_all!(gca_min_const_items, "unbraced const blocks as const args are experimental");
446    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");
447    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");
448    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");
449    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");
450    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");
451    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");
452    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");
453    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");
454    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");
455    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");
456    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");
457    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");
458    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!(
459        splat,
460        "`fn(#[rustc_splat] (a, ...))` is incomplete",
461        "call as func((a, ...)) instead"
462    );
463    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");
464    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");
465    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");
466    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");
467    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");
468    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");
469    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");
470    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");
471    // tidy-alphabetical-end
472
473    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!(
474        async_trait_bounds,
475        "`async` trait bounds are unstable",
476        "use the desugared name of the async trait, such as `AsyncFn`"
477    );
478    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!(
479        closure_lifetime_binder,
480        "`for<...>` binders for closures are experimental",
481        "consider using a type annotation instead: \
482         `let closure: for<...> fn(...) -> ... = /* closure */;`"
483    );
484    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!(
485        half_open_range_patterns_in_slices,
486        "half-open range patterns in slices are unstable"
487    );
488    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!(
489        named_fn_trait_parameters,
490        "named parameters in parenthesized generic argument lists are experimental"
491    );
492
493    // `associated_const_equality` will be stabilized as part of `gca_min_const_items`.
494    for &span in spans.get(&sym::associated_const_equality).into_flat_iter() {
495        {
    if !visitor.features.gca_min_const_items() &&
            !span.allows_unstable(sym::gca_min_const_items) {
        feature_err(visitor.sess, sym::gca_min_const_items, span,
                "associated const equality is incomplete").emit();
    }
};gate!(visitor, gca_min_const_items, span, "associated const equality is incomplete");
496    }
497
498    // Negative bounds are *super* internal. We require `-Zinternal-testing-features` *and*
499    // `#![feature(negative_bounds)]` to prevent proliferation. Under no circumstances do we
500    // want to advertise the flag and the feature name to users!
501    //
502    // IMPORTANT: If you intend on turning negative bounds into a public-facing feature, please
503    //            consult T-types and T-lang first! Do **not** just remove the `-Z` check!
504    //
505    // NOTE: `T: !Bound` means "`T` implements `Bound` negatively",
506    //       it does **not** mean "`T` doesn't implement `Bound` (positively or negatively)"!
507    //       The latter would be a SemVer hazard!
508    if !sess.opts.unstable_opts.internal_testing_features || !visitor.features.negative_bounds() {
509        for &span in spans.get(&sym::negative_bounds).into_flat_iter() {
510            sess.dcx().emit_err(diagnostics::NegativeBoundUnsupported { span });
511        }
512    }
513
514    if !visitor.features.never_patterns() {
515        for &span in spans.get(&sym::never_patterns).into_flat_iter() {
516            if span.allows_unstable(sym::never_patterns) {
517                continue;
518            }
519            // We gate two types of spans: the span of a `!` pattern, and the span of a
520            // match arm without a body. For the latter we want to give the user a normal
521            // error.
522            if let Ok("!") = sess.source_map().span_to_snippet(span).as_deref() {
523                feature_err(sess, sym::never_patterns, span, "`!` patterns are experimental")
524                    .emit();
525            } else {
526                let suggestion = span.shrink_to_hi();
527                sess.dcx().emit_err(diagnostics::MatchArmWithNoBody { span, suggestion });
528            }
529        }
530    }
531
532    // Yield exprs can be enabled either by `yield_expr`, by `coroutines` or by `gen_blocks`.
533    for &span in spans.get(&sym::yield_expr).into_flat_iter() {
534        if (!visitor.features.coroutines() && !span.allows_unstable(sym::coroutines))
535            && (!visitor.features.gen_blocks() && !span.allows_unstable(sym::gen_blocks))
536            && (!visitor.features.yield_expr() && !span.allows_unstable(sym::yield_expr))
537        {
538            // Only mentioned `yield_expr` in the diagnostic since that'll be sufficient.
539            // You can think of it as `coroutines` and `gen_blocks` implying `yield_expr`.
540            feature_err(visitor.sess, sym::yield_expr, span, "yield syntax is experimental").emit();
541        }
542    }
543
544    // -----------------------------------------------------------------------------
545    // **LEGACY**  SOFT PRE-EXPANSION FEATURE GATES FOR UNSTABLE SYNTAX  **LEGACY**
546    // -----------------------------------------------------------------------------
547
548    // IMPORTANT: Do not extend the list below! New syntax should go above and use `gate_all`.
549
550    // FIXME(#154045): Migrate all of these to erroring feature gates and
551    //                 remove the corresponding post-expansion feature gates.
552
553    macro_rules! soft_gate_all_legacy_dont_use {
554        ($feature:ident, $explain:literal) => {
555            for &span in spans.get(&sym::$feature).into_flat_iter() {
556                if !visitor.features.$feature() && !span.allows_unstable(sym::$feature) {
557                    feature_warn(&visitor.sess, sym::$feature, span, $explain);
558                }
559            }
560        };
561    }
562
563    // tidy-alphabetical-start
564    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");
565    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");
566    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");
567    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");
568    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");
569    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");
570    // tidy-alphabetical-end
571
572    for &span in spans.get(&sym::min_specialization).into_flat_iter() {
573        if !visitor.features.specialization()
574            && !visitor.features.min_specialization()
575            && !span.allows_unstable(sym::specialization)
576            && !span.allows_unstable(sym::min_specialization)
577        {
578            feature_warn(visitor.sess, sym::specialization, span, "specialization is experimental");
579        }
580    }
581
582    // -----------------------------------------------------------------------------
583
584    visit::walk_crate(&mut visitor, krate);
585}
586
587fn maybe_stage_features(sess: &Session, features: &Features, krate: &ast::Crate) {
588    // checks if `#![feature]` has been used to enable any feature.
589    if sess.opts.unstable_features.is_nightly_build() {
590        return;
591    }
592    if features.enabled_features().is_empty() {
593        return;
594    }
595    let mut errored = false;
596
597    if let Some(Attribute::Parsed(AttributeKind::Feature(feature_idents, first_span))) =
598        AttributeParser::parse_limited_sym(sess, &krate.attrs, &[sym::feature])
599    {
600        // `feature(...)` used on non-nightly. This is definitely an error.
601        let mut err = diagnostics::FeatureOnNonNightly {
602            span: first_span,
603            channel: ::core::option::Option::Some("nightly")option_env!("CFG_RELEASE_CHANNEL").unwrap_or("(unknown)"),
604            stable_features: ::alloc::vec::Vec::new()vec![],
605            sugg: None,
606        };
607
608        let mut all_stable = true;
609        for ident in feature_idents {
610            let name = ident.name;
611            let stable_since = features
612                .enabled_lang_features()
613                .iter()
614                .find(|feat| feat.gate_name == name)
615                .map(|feat| feat.stable_since)
616                .flatten();
617            if let Some(since) = stable_since {
618                err.stable_features.push(diagnostics::StableFeature { name, since });
619            } else {
620                all_stable = false;
621            }
622        }
623        if all_stable {
624            err.sugg = Some(first_span);
625        }
626        sess.dcx().emit_err(err);
627        errored = true;
628    }
629    // Just make sure we actually error if anything is listed in `enabled_features`.
630    if !errored { ::core::panicking::panic("assertion failed: errored") };assert!(errored);
631}
632
633fn check_incompatible_features(sess: &Session, features: &Features) {
634    let enabled_features = features.enabled_features_iter_stable_order();
635
636    for (f1, f2) in rustc_feature::INCOMPATIBLE_FEATURES
637        .iter()
638        .filter(|(f1, f2)| features.enabled(*f1) && features.enabled(*f2))
639    {
640        if let Some((f1_name, f1_span)) = enabled_features.clone().find(|(name, _)| name == f1)
641            && let Some((f2_name, f2_span)) = enabled_features.clone().find(|(name, _)| name == f2)
642        {
643            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];
644            sess.dcx().emit_err(diagnostics::IncompatibleFeatures {
645                spans,
646                f1: f1_name,
647                f2: f2_name,
648            });
649        }
650    }
651}
652
653fn check_dependent_features(sess: &Session, features: &Features) {
654    for &(parent, children) in
655        rustc_feature::DEPENDENT_FEATURES.iter().filter(|(parent, _)| features.enabled(*parent))
656    {
657        if children.iter().any(|f| !features.enabled(*f)) {
658            let parent_span = features
659                .enabled_features_iter_stable_order()
660                .find_map(|(name, span)| (name == parent).then_some(span))
661                .unwrap();
662            // FIXME: should probably format this in fluent instead of here
663            let missing = children
664                .iter()
665                .filter(|f| !features.enabled(**f))
666                .map(|s| ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("`{0}`", s.as_str()))
    })format!("`{}`", s.as_str()))
667                .intersperse(String::from(", "))
668                .collect();
669            sess.dcx().emit_err(diagnostics::MissingDependentFeatures {
670                parent_span,
671                parent,
672                missing,
673            });
674        }
675    }
676}
677
678fn warn_next_solver_and_gce(sess: &Session, features: &Features) {
679    if !sess.opts.unstable_opts.next_solver.globally {
680        return;
681    }
682
683    // Warn people who uses GCE and -Znext-solver=globally
684    // that their trait solver was downgraded to -Znext-solver=no
685    if let Some(gce_span) = features
686        .enabled_lang_features()
687        .iter()
688        .find(|feat| feat.gate_name == sym::generic_const_exprs)
689        .map(|feat| feat.attr_sp)
690    {
691        sess.dcx()
692            .emit_warn(diagnostics::NextSolverDisabledForGenericConstExprs { span: gce_span });
693    }
694}
695
696fn check_features_requiring_new_solver(sess: &Session, features: &Features) {
697    if sess.opts.unstable_opts.next_solver.globally {
698        return;
699    }
700
701    // Require the new solver with GCA, because the old solver can't implement GCA correctly as it
702    // does not support normalization obligations for free and inherent consts.
703    if let Some(gca_span) = features
704        .enabled_lang_features()
705        .iter()
706        .find(|feat| feat.gate_name == sym::gca_const_items)
707        .map(|feat| feat.attr_sp)
708    {
709        #[allow(rustc::symbol_intern_string_literal)]
710        sess.dcx().emit_err(diagnostics::MissingDependentFeatures {
711            parent_span: gca_span,
712            parent: sym::gca_const_items,
713            missing: String::from("-Znext-solver=globally"),
714        });
715    }
716}