|
63 | 63 | #![warn(missing_debug_implementations)] |
64 | 64 | #![allow(explicit_outlives_requirements)] |
65 | 65 | #![allow(incomplete_features)] |
66 | | -#![cfg_attr(not(bootstrap), feature(rustc_allow_const_fn_unstable))] |
| 66 | +#![feature(rustc_allow_const_fn_unstable)] |
67 | 67 | #![feature(allow_internal_unstable)] |
68 | 68 | #![feature(arbitrary_self_types)] |
69 | 69 | #![feature(asm)] |
|
85 | 85 | #![feature(const_pin)] |
86 | 86 | #![feature(const_fn)] |
87 | 87 | #![feature(const_fn_union)] |
88 | | -#![cfg_attr(not(bootstrap), feature(const_impl_trait))] |
| 88 | +#![feature(const_impl_trait)] |
89 | 89 | #![feature(const_fn_floating_point_arithmetic)] |
90 | 90 | #![feature(const_fn_fn_ptr_basics)] |
91 | 91 | #![feature(const_generics)] |
|
134 | 134 | #![feature(transparent_unions)] |
135 | 135 | #![feature(try_blocks)] |
136 | 136 | #![feature(unboxed_closures)] |
137 | | -#![cfg_attr(not(bootstrap), feature(unsized_fn_params))] |
138 | | -#![cfg_attr(bootstrap, feature(unsized_locals))] |
139 | | -#![cfg_attr(bootstrap, feature(untagged_unions))] |
| 137 | +#![feature(unsized_fn_params)] |
140 | 138 | #![feature(unwind_attributes)] |
141 | 139 | #![feature(variant_count)] |
142 | 140 | #![feature(tbm_target_feature)] |
@@ -290,7 +288,7 @@ pub mod primitive; |
290 | 288 | unused_imports, |
291 | 289 | unsafe_op_in_unsafe_fn |
292 | 290 | )] |
293 | | -#[cfg_attr(not(bootstrap), allow(non_autolinks))] |
| 291 | +#[allow(non_autolinks)] |
294 | 292 | // FIXME: This annotation should be moved into rust-lang/stdarch after clashing_extern_declarations is |
295 | 293 | // merged. It currently cannot because bootstrap fails as the lint hasn't been defined yet. |
296 | 294 | #[allow(clashing_extern_declarations)] |
|
0 commit comments