Skip to content

Commit 4d8c5e0

Browse files
committed
Replace type_alias_impl_trait by min_type_alias_impl_trait with no actual changes in behaviour
This makes `type_alias_impl_trait` not actually do anything anymore
1 parent 134b7b5 commit 4d8c5e0

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)]
145-
#![feature(type_alias_impl_trait)]
145+
#![cfg_attr(bootstrap, feature(type_alias_impl_trait))]
146+
#![cfg_attr(not(bootstrap), feature(min_type_alias_impl_trait))]
146147
#![feature(associated_type_bounds)]
147148
#![feature(slice_group_by)]
148149
#![feature(decl_macro)]

0 commit comments

Comments
 (0)