|
85 | 85 | #![feature(prelude_import)]
|
86 | 86 | #![feature(repr_simd, platform_intrinsics)]
|
87 | 87 | #![feature(rustc_attrs)]
|
88 |
| -#![cfg_attr(not(stage0), feature(rustc_const_unstable))] |
| 88 | +#![feature(rustc_const_unstable)] |
89 | 89 | #![feature(specialization)]
|
90 | 90 | #![feature(staged_api)]
|
91 | 91 | #![feature(unboxed_closures)]
|
92 | 92 | #![feature(untagged_unions)]
|
93 | 93 | #![feature(unwind_attributes)]
|
94 |
| - |
95 |
| -#![cfg_attr(not(stage0), feature(const_min_value))] |
96 |
| -#![cfg_attr(not(stage0), feature(const_max_value))] |
97 |
| -#![cfg_attr(not(stage0), feature(const_atomic_bool_new))] |
98 |
| -#![cfg_attr(not(stage0), feature(const_atomic_isize_new))] |
99 |
| -#![cfg_attr(not(stage0), feature(const_atomic_usize_new))] |
100 |
| -#![cfg_attr(not(stage0), feature(const_atomic_i8_new))] |
101 |
| -#![cfg_attr(not(stage0), feature(const_atomic_u8_new))] |
102 |
| -#![cfg_attr(not(stage0), feature(const_atomic_i16_new))] |
103 |
| -#![cfg_attr(not(stage0), feature(const_atomic_u16_new))] |
104 |
| -#![cfg_attr(not(stage0), feature(const_atomic_i32_new))] |
105 |
| -#![cfg_attr(not(stage0), feature(const_atomic_u32_new))] |
106 |
| -#![cfg_attr(not(stage0), feature(const_atomic_i64_new))] |
107 |
| -#![cfg_attr(not(stage0), feature(const_atomic_u64_new))] |
108 |
| -#![cfg_attr(not(stage0), feature(const_unsafe_cell_new))] |
109 |
| -#![cfg_attr(not(stage0), feature(const_cell_new))] |
110 |
| -#![cfg_attr(not(stage0), feature(const_nonzero_new))] |
| 94 | +#![feature(const_min_value)] |
| 95 | +#![feature(const_max_value)] |
| 96 | +#![feature(const_atomic_bool_new)] |
| 97 | +#![feature(const_atomic_isize_new)] |
| 98 | +#![feature(const_atomic_usize_new)] |
| 99 | +#![feature(const_atomic_i8_new)] |
| 100 | +#![feature(const_atomic_u8_new)] |
| 101 | +#![feature(const_atomic_i16_new)] |
| 102 | +#![feature(const_atomic_u16_new)] |
| 103 | +#![feature(const_atomic_i32_new)] |
| 104 | +#![feature(const_atomic_u32_new)] |
| 105 | +#![feature(const_atomic_i64_new)] |
| 106 | +#![feature(const_atomic_u64_new)] |
| 107 | +#![feature(const_unsafe_cell_new)] |
| 108 | +#![feature(const_cell_new)] |
| 109 | +#![feature(const_nonzero_new)] |
111 | 110 |
|
112 | 111 | #[prelude_import]
|
113 | 112 | #[allow(unused)]
|
|
0 commit comments