1
Fork 0

Use type_alias_impl_trait instead of min in compiler and lib

This commit is contained in:
Santiago Pastorino 2021-07-27 09:14:21 -03:00
parent cfc856acf3
commit 5bff8429a0
No known key found for this signature in database
GPG key ID: 8131A24E0C79EFAF
314 changed files with 1192 additions and 2255 deletions

View file

@ -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)]

View file

@ -489,7 +489,7 @@ declare_features! (
(active, async_closure, "1.37.0", Some(62290), None),
/// Allows `impl Trait` to be used inside type aliases (RFC 2515).
(incomplete, type_alias_impl_trait, "1.38.0", Some(63063), None),
(active, type_alias_impl_trait, "1.38.0", Some(63063), None),
/// Allows the definition of `const extern fn` and `const unsafe extern fn`.
(active, const_extern_fn, "1.40.0", Some(64926), None),