From 46dba1a3d118728db297e18b4460d7a59f05d266 Mon Sep 17 00:00:00 2001 From: Alex Macleod Date: Thu, 29 Jul 2021 13:26:55 +0100 Subject: [PATCH] Remove min_type_alias_impl_trait It has been removed in favour of type_alias_impl_trait https://github.com/rust-lang/rust/pull/87501 --- ices/53092.rs | 2 +- ices/77987.rs | 1 - ices/83919.rs | 2 +- ices/86800.rs | 3 ++- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ices/53092.rs b/ices/53092.rs index 0255d283..1a96f32f 100644 --- a/ices/53092.rs +++ b/ices/53092.rs @@ -1,4 +1,4 @@ -#![feature(min_type_alias_impl_trait)] +#![feature(type_alias_impl_trait)] #![allow(dead_code)] type Bug = impl Fn(T) -> U + Copy; diff --git a/ices/77987.rs b/ices/77987.rs index 80119bd5..b3a7cd36 100644 --- a/ices/77987.rs +++ b/ices/77987.rs @@ -1,4 +1,3 @@ -#![feature(min_type_alias_impl_trait)] #![feature(type_alias_impl_trait)] trait Foo {} diff --git a/ices/83919.rs b/ices/83919.rs index 58a62caa..f8e22ca5 100644 --- a/ices/83919.rs +++ b/ices/83919.rs @@ -1,4 +1,4 @@ -#![feature(min_type_alias_impl_trait)] +#![feature(type_alias_impl_trait)] use std::future::Future; diff --git a/ices/86800.rs b/ices/86800.rs index c5051d55..580c15ba 100644 --- a/ices/86800.rs +++ b/ices/86800.rs @@ -1,4 +1,5 @@ -#![feature(min_type_alias_impl_trait)] +#![feature(type_alias_impl_trait)] + use std::future::Future; struct Connection {}