Skip to content

Commit e0fca7a

Browse files
Stabilize associated type bounds
1 parent 1e24803 commit e0fca7a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

alloc/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,12 @@
172172
//
173173
// Language features:
174174
// tidy-alphabetical-start
175+
#![cfg_attr(bootstrap, feature(associated_type_bounds))]
175176
#![cfg_attr(not(test), feature(coroutine_trait))]
176177
#![cfg_attr(test, feature(panic_update_hook))]
177178
#![cfg_attr(test, feature(test))]
178179
#![feature(allocator_internals)]
179180
#![feature(allow_internal_unstable)]
180-
#![feature(associated_type_bounds)]
181181
#![feature(c_unwind)]
182182
#![feature(cfg_sanitize)]
183183
#![feature(const_mut_refs)]

alloc/tests/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![cfg_attr(bootstrap, feature(associated_type_bounds))]
12
#![feature(allocator_api)]
23
#![feature(alloc_layout_extra)]
34
#![feature(iter_array_chunks)]
@@ -21,7 +22,6 @@
2122
#![feature(trusted_len)]
2223
#![feature(try_reserve_kind)]
2324
#![feature(unboxed_closures)]
24-
#![feature(associated_type_bounds)]
2525
#![feature(binary_heap_into_iter_sorted)]
2626
#![feature(binary_heap_drain_sorted)]
2727
#![feature(slice_ptr_get)]

core/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,14 +202,14 @@
202202
//
203203
// Language features:
204204
// tidy-alphabetical-start
205+
#![cfg_attr(bootstrap, feature(associated_type_bounds))]
205206
#![cfg_attr(bootstrap, feature(diagnostic_namespace))]
206207
#![cfg_attr(bootstrap, feature(platform_intrinsics))]
207208
#![feature(abi_unadjusted)]
208209
#![feature(adt_const_params)]
209210
#![feature(allow_internal_unsafe)]
210211
#![feature(allow_internal_unstable)]
211212
#![feature(asm_const)]
212-
#![feature(associated_type_bounds)]
213213
#![feature(auto_traits)]
214214
#![feature(c_unwind)]
215215
#![feature(cfg_sanitize)]

0 commit comments

Comments
 (0)