diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2021-07-28 18:28:19 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-28 18:28:19 +0900 |
| commit | 23479f716adfbfd424d02a2cf6f4f18f011ffcc2 (patch) | |
| tree | 6fc26ade76f27316bac76b0b4c51ae571876cd53 /library/alloc/src | |
| parent | 35dddd3deaccb42ad9d47eb72b8a8979d9df7492 (diff) | |
| parent | f16ae7ee2673215c0b2f4b363b074f11fdd185f9 (diff) | |
| download | rust-23479f716adfbfd424d02a2cf6f4f18f011ffcc2.tar.gz rust-23479f716adfbfd424d02a2cf6f4f18f011ffcc2.zip | |
Rollup merge of #87501 - spastorino:remove-min-tait, r=oli-obk
Remove min_type_alias_impl_trait in favor of type_alias_impl_trait r? ``@oli-obk``
Diffstat (limited to 'library/alloc/src')
| -rw-r--r-- | library/alloc/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/alloc/src/lib.rs b/library/alloc/src/lib.rs index f04180127b1..d2ececaa975 100644 --- a/library/alloc/src/lib.rs +++ b/library/alloc/src/lib.rs @@ -142,7 +142,8 @@ #![feature(alloc_layout_extra)] #![feature(trusted_random_access)] #![feature(try_trait_v2)] -#![feature(min_type_alias_impl_trait)] +#![cfg_attr(bootstrap, feature(min_type_alias_impl_trait))] +#![cfg_attr(not(bootstrap), feature(type_alias_impl_trait))] #![feature(associated_type_bounds)] #![feature(slice_group_by)] #![feature(decl_macro)] |
