Skip to content

Commit 476ad7e

Browse files
authored
Rollup merge of rust-lang#87501 - spastorino:remove-min-tait, r=oli-obk
Remove min_type_alias_impl_trait in favor of type_alias_impl_trait r? ``@oli-obk``
2 parents 150010e + 90baaca commit 476ad7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

alloc/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@
142142
#![feature(alloc_layout_extra)]
143143
#![feature(trusted_random_access)]
144144
#![feature(try_trait_v2)]
145-
#![feature(min_type_alias_impl_trait)]
145+
#![cfg_attr(bootstrap, feature(min_type_alias_impl_trait))]
146+
#![cfg_attr(not(bootstrap), feature(type_alias_impl_trait))]
146147
#![feature(associated_type_bounds)]
147148
#![feature(slice_group_by)]
148149
#![feature(decl_macro)]

0 commit comments

Comments
 (0)