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 /compiler/rustc_data_structures/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 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/lib.rs b/compiler/rustc_data_structures/src/lib.rs index 041d52aa20a..18bc2f896f2 100644 --- a/compiler/rustc_data_structures/src/lib.rs +++ b/compiler/rustc_data_structures/src/lib.rs @@ -21,7 +21,8 @@ #![feature(iter_map_while)] #![feature(maybe_uninit_uninit_array)] #![feature(min_specialization)] -#![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(new_uninit)] #![feature(nll)] #![feature(once_cell)] |
