|
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(intra_doc_features)] |
41 | 49 | #![feature(iter_from_coroutine)] |
| 50 | +#![feature(let_chains)] |
| 51 | +#![feature(macro_metavar_expr)] |
| 52 | +#![feature(min_exhaustive_patterns)] |
| 53 | +#![feature(min_specialization)] |
42 | 54 | #![feature(negative_impls)] |
43 | 55 | #![feature(never_type)] |
44 | | -#![feature(extern_types)] |
45 | 56 | #![feature(new_uninit)] |
46 | | -#![feature(let_chains)] |
47 | | -#![feature(min_specialization)] |
48 | | -#![feature(trusted_len)] |
49 | | -#![feature(type_alias_impl_trait)] |
50 | | -#![feature(strict_provenance)] |
51 | | -#![cfg_attr(bootstrap, feature(associated_type_bounds))] |
| 57 | +#![feature(ptr_alignment_type)] |
52 | 58 | #![feature(rustc_attrs)] |
| 59 | +#![feature(rustdoc_internals)] |
| 60 | +#![feature(strict_provenance)] |
53 | 61 | #![feature(trait_upcasting)] |
| 62 | +#![feature(trusted_len)] |
54 | 63 | #![feature(try_blocks)] |
55 | | -#![feature(decl_macro)] |
56 | | -#![feature(extract_if)] |
| 64 | +#![feature(type_alias_impl_trait)] |
57 | 65 | #![feature(yeet_expr)] |
58 | | -#![feature(const_option)] |
59 | | -#![feature(ptr_alignment_type)] |
60 | | -#![feature(macro_metavar_expr)] |
61 | | -#![allow(internal_features)] |
62 | | -#![allow(rustc::potential_query_instability)] |
63 | | -#![allow(rustc::diagnostic_outside_of_impl)] |
64 | | -#![allow(rustc::untranslatable_diagnostic)] |
| 66 | +// tidy-alphabetical-end |
65 | 67 |
|
66 | 68 | #[macro_use] |
67 | 69 | extern crate tracing; |
|
0 commit comments