Skip to content

Commit 46dba1a

Browse files
committed
Remove min_type_alias_impl_trait
It has been removed in favour of type_alias_impl_trait rust-lang/rust#87501
1 parent 5a999e5 commit 46dba1a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ices/53092.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(min_type_alias_impl_trait)]
1+
#![feature(type_alias_impl_trait)]
22
#![allow(dead_code)]
33

44
type Bug<T, U> = impl Fn(T) -> U + Copy;

ices/77987.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(min_type_alias_impl_trait)]
21
#![feature(type_alias_impl_trait)]
32

43
trait Foo<T> {}

ices/83919.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(min_type_alias_impl_trait)]
1+
#![feature(type_alias_impl_trait)]
22

33
use std::future::Future;
44

ices/86800.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#![feature(min_type_alias_impl_trait)]
1+
#![feature(type_alias_impl_trait)]
2+
23
use std::future::Future;
34

45
struct Connection {}

0 commit comments

Comments
 (0)