|
22 | 22 | //! |
23 | 23 | //! This API is completely unstable and subject to change. |
24 | 24 |
|
| 25 | +// tidy-alphabetical-start |
| 26 | +#![allow(internal_features)] |
| 27 | +#![allow(rustc::diagnostic_outside_of_impl)] |
| 28 | +#![allow(rustc::potential_query_instability)] |
| 29 | +#![allow(rustc::untranslatable_diagnostic)] |
| 30 | +#![cfg_attr(bootstrap, feature(associated_type_bounds))] |
| 31 | +#![cfg_attr(bootstrap, feature(inline_const))] |
25 | 32 | #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] |
26 | 33 | #![doc(rust_logo)] |
27 | | -#![feature(min_exhaustive_patterns)] |
28 | | -#![feature(rustdoc_internals)] |
29 | 34 | #![feature(allocator_api)] |
30 | 35 | #![feature(array_windows)] |
31 | 36 | #![feature(assert_matches)] |
32 | 37 | #![feature(box_patterns)] |
33 | 38 | #![feature(closure_track_caller)] |
34 | | -#![feature(core_intrinsics)] |
| 39 | +#![feature(const_option)] |
35 | 40 | #![feature(const_type_name)] |
36 | | -#![feature(discriminant_kind)] |
| 41 | +#![feature(core_intrinsics)] |
37 | 42 | #![feature(coroutines)] |
| 43 | +#![feature(decl_macro)] |
| 44 | +#![feature(discriminant_kind)] |
| 45 | +#![feature(extern_types)] |
| 46 | +#![feature(extract_if)] |
38 | 47 | #![feature(if_let_guard)] |
39 | | -#![cfg_attr(bootstrap, feature(inline_const))] |
40 | 48 | #![feature(iter_from_coroutine)] |
| 49 | +#![feature(let_chains)] |
| 50 | +#![feature(macro_metavar_expr)] |
| 51 | +#![feature(min_exhaustive_patterns)] |
| 52 | +#![feature(min_specialization)] |
41 | 53 | #![feature(negative_impls)] |
42 | 54 | #![feature(never_type)] |
43 | | -#![feature(extern_types)] |
44 | 55 | #![feature(new_uninit)] |
45 | | -#![feature(let_chains)] |
46 | | -#![feature(min_specialization)] |
47 | | -#![feature(trusted_len)] |
48 | | -#![feature(type_alias_impl_trait)] |
49 | | -#![feature(strict_provenance)] |
50 | | -#![cfg_attr(bootstrap, feature(associated_type_bounds))] |
| 56 | +#![feature(ptr_alignment_type)] |
51 | 57 | #![feature(rustc_attrs)] |
| 58 | +#![feature(rustdoc_internals)] |
| 59 | +#![feature(strict_provenance)] |
52 | 60 | #![feature(trait_upcasting)] |
| 61 | +#![feature(trusted_len)] |
53 | 62 | #![feature(try_blocks)] |
54 | | -#![feature(decl_macro)] |
55 | | -#![feature(extract_if)] |
| 63 | +#![feature(type_alias_impl_trait)] |
56 | 64 | #![feature(yeet_expr)] |
57 | | -#![feature(const_option)] |
58 | | -#![feature(ptr_alignment_type)] |
59 | | -#![feature(macro_metavar_expr)] |
60 | | -#![allow(internal_features)] |
61 | | -#![allow(rustc::potential_query_instability)] |
62 | | -#![allow(rustc::diagnostic_outside_of_impl)] |
63 | | -#![allow(rustc::untranslatable_diagnostic)] |
| 65 | +// tidy-alphabetical-end |
64 | 66 |
|
65 | 67 | #[macro_use] |
66 | 68 | extern crate tracing; |
|
0 commit comments