]> git.lizzy.rs Git - rust.git/blob - src/librustc_feature/active.rs
Account for `ty::Error` when suggesting `impl Trait` or `Box<dyn Trait>`
[rust.git] / src / librustc_feature / active.rs
1 //! List of the active feature gates.
2
3 use super::{Feature, State};
4
5 use rustc_span::edition::Edition;
6 use rustc_span::symbol::{sym, Symbol};
7 use rustc_span::Span;
8
9 macro_rules! set {
10     ($field: ident) => {{
11         fn f(features: &mut Features, _: Span) {
12             features.$field = true;
13         }
14         f as fn(&mut Features, Span)
15     }};
16 }
17
18 macro_rules! declare_features {
19     ($(
20         $(#[doc = $doc:tt])* (active, $feature:ident, $ver:expr, $issue:expr, $edition:expr),
21     )+) => {
22         /// Represents active features that are currently being implemented or
23         /// currently being considered for addition/removal.
24         pub const ACTIVE_FEATURES:
25             &[Feature] =
26             &[$(
27                 // (sym::$feature, $ver, $issue, $edition, set!($feature))
28                 Feature {
29                     state: State::Active { set: set!($feature) },
30                     name: sym::$feature,
31                     since: $ver,
32                     issue: $issue,
33                     edition: $edition,
34                     description: concat!($($doc,)*),
35                 }
36             ),+];
37
38         /// A set of features to be used by later passes.
39         #[derive(Clone, Default)]
40         pub struct Features {
41             /// `#![feature]` attrs for language features, for error reporting.
42             pub declared_lang_features: Vec<(Symbol, Span, Option<Symbol>)>,
43             /// `#![feature]` attrs for non-language (library) features.
44             pub declared_lib_features: Vec<(Symbol, Span)>,
45             $(
46                 $(#[doc = $doc])*
47                 pub $feature: bool
48             ),+
49         }
50
51         impl Features {
52             pub fn walk_feature_fields(&self, mut f: impl FnMut(&str, bool)) {
53                 $(f(stringify!($feature), self.$feature);)+
54             }
55
56             /// Is the given feature enabled?
57             ///
58             /// Panics if the symbol doesn't correspond to a declared feature.
59             pub fn enabled(&self, feature: Symbol) -> bool {
60                 match feature {
61                     $( sym::$feature => self.$feature, )*
62
63                     _ => panic!("`{}` was not listed in `declare_features`", feature),
64                 }
65             }
66         }
67     };
68 }
69
70 impl Feature {
71     /// Sets this feature in `Features`. Panics if called on a non-active feature.
72     pub fn set(&self, features: &mut Features, span: Span) {
73         match self.state {
74             State::Active { set } => set(features, span),
75             _ => panic!("called `set` on feature `{}` which is not `active`", self.name),
76         }
77     }
78 }
79
80 // If you change this, please modify `src/doc/unstable-book` as well.
81 //
82 // Don't ever remove anything from this list; move them to `removed.rs`.
83 //
84 // The version numbers here correspond to the version in which the current status
85 // was set. This is most important for knowing when a particular feature became
86 // stable (active).
87 //
88 // Note that the features are grouped into internal/user-facing and then
89 // sorted by version inside those groups. This is enforced with tidy.
90 //
91 // N.B., `tools/tidy/src/features.rs` parses this information directly out of the
92 // source, so take care when modifying it.
93
94 #[rustfmt::skip]
95 declare_features! (
96     // -------------------------------------------------------------------------
97     // feature-group-start: internal feature gates
98     // -------------------------------------------------------------------------
99
100     // no-tracking-issue-start
101
102     /// Allows using compiler's own crates.
103     (active, rustc_private, "1.0.0", Some(27812), None),
104
105     /// Allows using the `rust-intrinsic`'s "ABI".
106     (active, intrinsics, "1.0.0", None, None),
107
108     /// Allows using `#[lang = ".."]` attribute for linking items to special compiler logic.
109     (active, lang_items, "1.0.0", None, None),
110
111     /// Allows using the `#[stable]` and `#[unstable]` attributes.
112     (active, staged_api, "1.0.0", None, None),
113
114     /// Allows using `#[allow_internal_unstable]`. This is an
115     /// attribute on `macro_rules!` and can't use the attribute handling
116     /// below (it has to be checked before expansion possibly makes
117     /// macros disappear).
118     (active, allow_internal_unstable, "1.0.0", None, None),
119
120     /// Allows using `#[allow_internal_unsafe]`. This is an
121     /// attribute on `macro_rules!` and can't use the attribute handling
122     /// below (it has to be checked before expansion possibly makes
123     /// macros disappear).
124     (active, allow_internal_unsafe, "1.0.0", None, None),
125
126     /// no-tracking-issue-end
127
128     /// Allows using `#[link_name="llvm.*"]`.
129     (active, link_llvm_intrinsics, "1.0.0", Some(29602), None),
130
131     /// Allows using `rustc_*` attributes (RFC 572).
132     (active, rustc_attrs, "1.0.0", Some(29642), None),
133
134     /// Allows using the `box $expr` syntax.
135     (active, box_syntax, "1.0.0", Some(49733), None),
136
137     /// Allows using `#[main]` to replace the entrypoint `#[lang = "start"]` calls.
138     (active, main, "1.0.0", Some(29634), None),
139
140     /// Allows using `#[start]` on a function indicating that it is the program entrypoint.
141     (active, start, "1.0.0", Some(29633), None),
142
143     /// Allows using the `#[fundamental]` attribute.
144     (active, fundamental, "1.0.0", Some(29635), None),
145
146     /// Allows using the `rust-call` ABI.
147     (active, unboxed_closures, "1.0.0", Some(29625), None),
148
149     /// Allows using the `#[linkage = ".."]` attribute.
150     (active, linkage, "1.0.0", Some(29603), None),
151
152     /// Allows features specific to OIBIT (auto traits).
153     (active, optin_builtin_traits, "1.0.0", Some(13231), None),
154
155     /// Allows using `box` in patterns (RFC 469).
156     (active, box_patterns, "1.0.0", Some(29641), None),
157
158     // no-tracking-issue-start
159
160     /// Allows using `#[prelude_import]` on glob `use` items.
161     (active, prelude_import, "1.2.0", None, None),
162
163     // no-tracking-issue-end
164
165     // no-tracking-issue-start
166
167     /// Allows using `#[omit_gdb_pretty_printer_section]`.
168     (active, omit_gdb_pretty_printer_section, "1.5.0", None, None),
169
170     /// Allows using the `vectorcall` ABI.
171     (active, abi_vectorcall, "1.7.0", None, None),
172
173     // no-tracking-issue-end
174
175     /// Allows using `#[structural_match]` which indicates that a type is structurally matchable.
176     (active, structural_match, "1.8.0", Some(31434), None),
177
178     /// Allows using the `may_dangle` attribute (RFC 1327).
179     (active, dropck_eyepatch, "1.10.0", Some(34761), None),
180
181     /// Allows using the `#![panic_runtime]` attribute.
182     (active, panic_runtime, "1.10.0", Some(32837), None),
183
184     /// Allows declaring with `#![needs_panic_runtime]` that a panic runtime is needed.
185     (active, needs_panic_runtime, "1.10.0", Some(32837), None),
186
187     // no-tracking-issue-start
188
189     /// Allows identifying the `compiler_builtins` crate.
190     (active, compiler_builtins, "1.13.0", None, None),
191
192     /// Allows using the `unadjusted` ABI; perma-unstable.
193     (active, abi_unadjusted, "1.16.0", None, None),
194
195     /// Used to identify crates that contain the profiler runtime.
196     (active, profiler_runtime, "1.18.0", None, None),
197
198     /// Allows using the `thiscall` ABI.
199     (active, abi_thiscall, "1.19.0", None, None),
200
201     /// Allows using `#![needs_allocator]`, an implementation detail of `#[global_allocator]`.
202     (active, allocator_internals, "1.20.0", None, None),
203
204     /// Added for testing E0705; perma-unstable.
205     (active, test_2018_feature, "1.31.0", None, Some(Edition::Edition2018)),
206
207     // no-tracking-issue-end
208
209     // -------------------------------------------------------------------------
210     // feature-group-end: internal feature gates
211     // -------------------------------------------------------------------------
212
213     // -------------------------------------------------------------------------
214     // feature-group-start: actual feature gates (target features)
215     // -------------------------------------------------------------------------
216
217     // FIXME: Document these and merge with the list below.
218
219     // Unstable `#[target_feature]` directives.
220     (active, arm_target_feature, "1.27.0", Some(44839), None),
221     (active, aarch64_target_feature, "1.27.0", Some(44839), None),
222     (active, hexagon_target_feature, "1.27.0", Some(44839), None),
223     (active, powerpc_target_feature, "1.27.0", Some(44839), None),
224     (active, mips_target_feature, "1.27.0", Some(44839), None),
225     (active, avx512_target_feature, "1.27.0", Some(44839), None),
226     (active, mmx_target_feature, "1.27.0", Some(44839), None),
227     (active, sse4a_target_feature, "1.27.0", Some(44839), None),
228     (active, tbm_target_feature, "1.27.0", Some(44839), None),
229     (active, wasm_target_feature, "1.30.0", Some(44839), None),
230     (active, adx_target_feature, "1.32.0", Some(44839), None),
231     (active, cmpxchg16b_target_feature, "1.32.0", Some(44839), None),
232     (active, movbe_target_feature, "1.34.0", Some(44839), None),
233     (active, rtm_target_feature, "1.35.0", Some(44839), None),
234     (active, f16c_target_feature, "1.36.0", Some(44839), None),
235
236     // -------------------------------------------------------------------------
237     // feature-group-end: actual feature gates (target features)
238     // -------------------------------------------------------------------------
239
240     // -------------------------------------------------------------------------
241     // feature-group-start: actual feature gates
242     // -------------------------------------------------------------------------
243
244     /// Allows using the `#[link_args]` attribute.
245     (active, link_args, "1.0.0", Some(29596), None),
246
247     /// Allows defining identifiers beyond ASCII.
248     (active, non_ascii_idents, "1.0.0", Some(55467), None),
249
250     /// Allows using `#[plugin_registrar]` on functions.
251     (active, plugin_registrar, "1.0.0", Some(29597), None),
252
253     /// Allows using `#![plugin(myplugin)]`.
254     (active, plugin, "1.0.0", Some(29597), None),
255
256     /// Allows using `#[thread_local]` on `static` items.
257     (active, thread_local, "1.0.0", Some(29594), None),
258
259     /// Allows the use of SIMD types in functions declared in `extern` blocks.
260     (active, simd_ffi, "1.0.0", Some(27731), None),
261
262     /// Allows using non lexical lifetimes (RFC 2094).
263     (active, nll, "1.0.0", Some(43234), None),
264
265     /// Allows the definition of `const` functions with some advanced features.
266     (active, const_fn, "1.2.0", Some(57563), None),
267
268     /// Allows associated type defaults.
269     (active, associated_type_defaults, "1.2.0", Some(29661), None),
270
271     /// Allows `#![no_core]`.
272     (active, no_core, "1.3.0", Some(29639), None),
273
274     /// Allows default type parameters to influence type inference.
275     (active, default_type_parameter_fallback, "1.3.0", Some(27336), None),
276
277     /// Allows `repr(simd)` and importing the various simd intrinsics.
278     (active, repr_simd, "1.4.0", Some(27731), None),
279
280     /// Allows `extern "platform-intrinsic" { ... }`.
281     (active, platform_intrinsics, "1.4.0", Some(27731), None),
282
283     /// Allows `#[unwind(..)]`.
284     ///
285     /// Permits specifying whether a function should permit unwinding or abort on unwind.
286     (active, unwind_attributes, "1.4.0", Some(58760), None),
287
288     /// Allows `#[no_debug]`.
289     (active, no_debug, "1.5.0", Some(29721), None),
290
291     /// Allows attributes on expressions and non-item statements.
292     (active, stmt_expr_attributes, "1.6.0", Some(15701), None),
293
294     /// Allows the use of type ascription in expressions.
295     (active, type_ascription, "1.6.0", Some(23416), None),
296
297     /// Allows `cfg(target_thread_local)`.
298     (active, cfg_target_thread_local, "1.7.0", Some(29594), None),
299
300     /// Allows specialization of implementations (RFC 1210).
301     (active, specialization, "1.7.0", Some(31844), None),
302
303     /// Allows using `#[naked]` on functions.
304     (active, naked_functions, "1.9.0", Some(32408), None),
305
306     /// Allows `cfg(target_has_atomic = "...")`.
307     (active, cfg_target_has_atomic, "1.9.0", Some(32976), None),
308
309     /// Allows `X..Y` patterns.
310     (active, exclusive_range_pattern, "1.11.0", Some(37854), None),
311
312     /// Allows the `!` type. Does not imply 'exhaustive_patterns' (below) any more.
313     (active, never_type, "1.13.0", Some(35121), None),
314
315     /// Allows exhaustive pattern matching on types that contain uninhabited types.
316     (active, exhaustive_patterns, "1.13.0", Some(51085), None),
317
318     /// Allows `union`s to implement `Drop`. Moreover, `union`s may now include fields
319     /// that don't implement `Copy` as long as they don't have any drop glue.
320     /// This is checked recursively. On encountering type variable where no progress can be made,
321     /// `T: Copy` is used as a substitute for "no drop glue".
322     ///
323     /// NOTE: A limited form of `union U { ... }` was accepted in 1.19.0.
324     (active, untagged_unions, "1.13.0", Some(55149), None),
325
326     /// Allows `#[link(..., cfg(..))]`.
327     (active, link_cfg, "1.14.0", Some(37406), None),
328
329     /// Allows `extern "ptx-*" fn()`.
330     (active, abi_ptx, "1.15.0", Some(38788), None),
331
332     /// Allows the `#[repr(i128)]` attribute for enums.
333     (active, repr128, "1.16.0", Some(56071), None),
334
335     /// Allows `#[link(kind="static-nobundle"...)]`.
336     (active, static_nobundle, "1.16.0", Some(37403), None),
337
338     /// Allows `extern "msp430-interrupt" fn()`.
339     (active, abi_msp430_interrupt, "1.16.0", Some(38487), None),
340
341     /// Allows declarative macros 2.0 (`macro`).
342     (active, decl_macro, "1.17.0", Some(39412), None),
343
344     /// Allows `extern "x86-interrupt" fn()`.
345     (active, abi_x86_interrupt, "1.17.0", Some(40180), None),
346
347     /// Allows overlapping impls of marker traits.
348     (active, overlapping_marker_traits, "1.18.0", Some(29864), None),
349
350     /// Allows a test to fail without failing the whole suite.
351     (active, allow_fail, "1.19.0", Some(46488), None),
352
353     /// Allows unsized tuple coercion.
354     (active, unsized_tuple_coercion, "1.20.0", Some(42877), None),
355
356     /// Allows defining generators.
357     (active, generators, "1.21.0", Some(43122), None),
358
359     /// Allows `#[doc(cfg(...))]`.
360     (active, doc_cfg, "1.21.0", Some(43781), None),
361
362     /// Allows `#[doc(masked)]`.
363     (active, doc_masked, "1.21.0", Some(44027), None),
364
365     /// Allows `#[doc(spotlight)]`.
366     (active, doc_spotlight, "1.22.0", Some(45040), None),
367
368     /// Allows `#[doc(include = "some-file")]`.
369     (active, external_doc, "1.22.0", Some(44732), None),
370
371     /// Allows using `crate` as visibility modifier, synonymous with `pub(crate)`.
372     (active, crate_visibility_modifier, "1.23.0", Some(53120), None),
373
374     /// Allows defining `extern type`s.
375     (active, extern_types, "1.23.0", Some(43467), None),
376
377     /// Allows trait methods with arbitrary self types.
378     (active, arbitrary_self_types, "1.23.0", Some(44874), None),
379
380     /// Allows in-band quantification of lifetime bindings (e.g., `fn foo(x: &'a u8) -> &'a u8`).
381     (active, in_band_lifetimes, "1.23.0", Some(44524), None),
382
383     /// Allows associated types to be generic, e.g., `type Foo<T>;` (RFC 1598).
384     (active, generic_associated_types, "1.23.0", Some(44265), None),
385
386     /// Allows defining `trait X = A + B;` alias items.
387     (active, trait_alias, "1.24.0", Some(41517), None),
388
389     /// Allows infering `'static` outlives requirements (RFC 2093).
390     (active, infer_static_outlives_requirements, "1.26.0", Some(54185), None),
391
392     /// Allows accessing fields of unions inside `const` functions.
393     (active, const_fn_union, "1.27.0", Some(51909), None),
394
395     /// Allows casting raw pointers to `usize` during const eval.
396     (active, const_raw_ptr_to_usize_cast, "1.27.0", Some(51910), None),
397
398     /// Allows dereferencing raw pointers during const eval.
399     (active, const_raw_ptr_deref, "1.27.0", Some(51911), None),
400
401     /// Allows comparing raw pointers during const eval.
402     (active, const_compare_raw_pointers, "1.27.0", Some(53020), None),
403
404     /// Allows `#[doc(alias = "...")]`.
405     (active, doc_alias, "1.27.0", Some(50146), None),
406
407     /// Allows inconsistent bounds in where clauses.
408     (active, trivial_bounds, "1.28.0", Some(48214), None),
409
410     /// Allows `'a: { break 'a; }`.
411     (active, label_break_value, "1.28.0", Some(48594), None),
412
413     /// Allows using `#[doc(keyword = "...")]`.
414     (active, doc_keyword, "1.28.0", Some(51315), None),
415
416     /// Allows using `try {...}` expressions.
417     (active, try_blocks, "1.29.0", Some(31436), None),
418
419     /// Allows defining an `#[alloc_error_handler]`.
420     (active, alloc_error_handler, "1.29.0", Some(51540), None),
421
422     /// Allows using the `amdgpu-kernel` ABI.
423     (active, abi_amdgpu_kernel, "1.29.0", Some(51575), None),
424
425     /// Allows panicking during const eval (producing compile-time errors).
426     (active, const_panic, "1.30.0", Some(51999), None),
427
428     /// Allows `#[marker]` on certain traits allowing overlapping implementations.
429     (active, marker_trait_attr, "1.30.0", Some(29864), None),
430
431     /// Allows macro invocations on modules expressions and statements and
432     /// procedural macros to expand to non-items.
433     (active, proc_macro_hygiene, "1.30.0", Some(54727), None),
434
435     /// Allows unsized rvalues at arguments and parameters.
436     (active, unsized_locals, "1.30.0", Some(48055), None),
437
438     /// Allows custom test frameworks with `#![test_runner]` and `#[test_case]`.
439     (active, custom_test_frameworks, "1.30.0", Some(50297), None),
440
441     /// Allows non-builtin attributes in inner attribute position.
442     (active, custom_inner_attributes, "1.30.0", Some(54726), None),
443
444     /// Allows `impl Trait` in bindings (`let`, `const`, `static`).
445     (active, impl_trait_in_bindings, "1.30.0", Some(63065), None),
446
447     /// Allows using `reason` in lint attributes and the `#[expect(lint)]` lint check.
448     (active, lint_reasons, "1.31.0", Some(54503), None),
449
450     /// Allows exhaustive integer pattern matching on `usize` and `isize`.
451     (active, precise_pointer_size_matching, "1.32.0", Some(56354), None),
452
453     /// Allows using `#[ffi_returns_twice]` on foreign functions.
454     (active, ffi_returns_twice, "1.34.0", Some(58314), None),
455
456     /// Allows const generic types (e.g. `struct Foo<const N: usize>(...);`).
457     (active, const_generics, "1.34.0", Some(44580), None),
458
459     /// Allows using `#[optimize(X)]`.
460     (active, optimize_attribute, "1.34.0", Some(54882), None),
461
462     /// Allows using C-variadics.
463     (active, c_variadic, "1.34.0", Some(44930), None),
464
465     /// Allows the user of associated type bounds.
466     (active, associated_type_bounds, "1.34.0", Some(52662), None),
467
468     /// Allows `if/while p && let q = r && ...` chains.
469     (active, let_chains, "1.37.0", Some(53667), None),
470
471     /// Allows #[repr(transparent)] on enums (RFC 2645).
472     (active, transparent_enums, "1.37.0", Some(60405), None),
473
474     /// Allows #[repr(transparent)] on unions (RFC 2645).
475     (active, transparent_unions, "1.37.0", Some(60405), None),
476
477     /// Allows explicit discriminants on non-unit enum variants.
478     (active, arbitrary_enum_discriminant, "1.37.0", Some(60553), None),
479
480     /// Allows `impl Trait` with multiple unrelated lifetimes.
481     (active, member_constraints, "1.37.0", Some(61997), None),
482
483     /// Allows `async || body` closures.
484     (active, async_closure, "1.37.0", Some(62290), None),
485
486     /// Allows `[x; N]` where `x` is a constant (RFC 2203).
487     (active, const_in_array_repeat_expressions, "1.37.0", Some(49147), None),
488
489     /// Allows `impl Trait` to be used inside type aliases (RFC 2515).
490     (active, type_alias_impl_trait, "1.38.0", Some(63063), None),
491
492     /// Allows the use of or-patterns (e.g., `0 | 1`).
493     (active, or_patterns, "1.38.0", Some(54883), None),
494
495     /// Allows the definition of `const extern fn` and `const unsafe extern fn`.
496     (active, const_extern_fn, "1.40.0", Some(64926), None),
497
498     /// Allows the use of raw-dylibs (RFC 2627).
499     (active, raw_dylib, "1.40.0", Some(58713), None),
500
501     /// Allows `#[track_caller]` to be used which provides
502     /// accurate caller location reporting during panic (RFC 2091).
503     (active, track_caller, "1.40.0", Some(47809), None),
504
505     /// Allows making `dyn Trait` well-formed even if `Trait` is not object safe.
506     /// In that case, `dyn Trait: Trait` does not hold. Moreover, coercions and
507     /// casts in safe Rust to `dyn Trait` for such a `Trait` is also forbidden.
508     (active, object_safe_for_dispatch, "1.40.0", Some(43561), None),
509
510     /// Allows using the `efiapi` ABI.
511     (active, abi_efiapi, "1.40.0", Some(65815), None),
512
513     /// Allows `&raw const $place_expr` and `&raw mut $place_expr` expressions.
514     (active, raw_ref_op, "1.41.0", Some(64490), None),
515
516     /// Allows diverging expressions to fall back to `!` rather than `()`.
517     (active, never_type_fallback, "1.41.0", Some(65992), None),
518
519     /// Allows using the `#[register_attr]` attribute.
520     (active, register_attr, "1.41.0", Some(66080), None),
521
522     /// Allows using the `#[register_tool]` attribute.
523     (active, register_tool, "1.41.0", Some(66079), None),
524
525     /// Allows the use of `if` and `match` in constants.
526     (active, const_if_match, "1.41.0", Some(49146), None),
527
528     /// Allows the use of `#[cfg(sanitize = "option")]`; set when -Zsanitizer is used.
529     (active, cfg_sanitize, "1.41.0", Some(39699), None),
530
531     /// Allows using `..X`, `..=X`, `...X`, and `X..` as a pattern.
532     (active, half_open_range_patterns, "1.41.0", Some(67264), None),
533
534     /// Allows using `&mut` in constant functions.
535     (active, const_mut_refs, "1.41.0", Some(57349), None),
536
537     /// Allows the use of `loop` and `while` in constants.
538     (active, const_loop, "1.41.0", Some(52000), None),
539
540     /// Allows bindings in the subpattern of a binding pattern.
541     /// For example, you can write `x @ Some(y)`.
542     (active, bindings_after_at, "1.41.0", Some(65490), None),
543
544     /// Allows `impl const Trait for T` syntax.
545     (active, const_trait_impl, "1.42.0", Some(67792), None),
546
547     /// Allows `T: ?const Trait` syntax in bounds.
548     (active, const_trait_bound_opt_out, "1.42.0", Some(67794), None),
549
550     // -------------------------------------------------------------------------
551     // feature-group-end: actual feature gates
552     // -------------------------------------------------------------------------
553 );
554
555 /// Some features are known to be incomplete and using them is likely to have
556 /// unanticipated results, such as compiler crashes. We warn the user about these
557 /// to alert them.
558 pub const INCOMPLETE_FEATURES: &[Symbol] = &[
559     sym::impl_trait_in_bindings,
560     sym::generic_associated_types,
561     sym::const_generics,
562     sym::or_patterns,
563     sym::let_chains,
564     sym::raw_dylib,
565     sym::const_trait_impl,
566     sym::const_trait_bound_opt_out,
567 ];