Skip to content

Commit

Permalink
Remove min_type_alias_impl_trait
Browse files Browse the repository at this point in the history
It has been removed in favour of type_alias_impl_trait
rust-lang/rust#87501
  • Loading branch information
Alexendoo committed Jul 29, 2021
1 parent 5a999e5 commit 46dba1a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ices/53092.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(min_type_alias_impl_trait)]
#![feature(type_alias_impl_trait)]
#![allow(dead_code)]

type Bug<T, U> = impl Fn(T) -> U + Copy;
Expand Down
1 change: 0 additions & 1 deletion ices/77987.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![feature(min_type_alias_impl_trait)]
#![feature(type_alias_impl_trait)]

trait Foo<T> {}
Expand Down
2 changes: 1 addition & 1 deletion ices/83919.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(min_type_alias_impl_trait)]
#![feature(type_alias_impl_trait)]

use std::future::Future;

Expand Down
3 changes: 2 additions & 1 deletion ices/86800.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![feature(min_type_alias_impl_trait)]
#![feature(type_alias_impl_trait)]

use std::future::Future;

struct Connection {}
Expand Down

0 comments on commit 46dba1a

Please sign in to comment.