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