From 66501a00ffadb781daff2cd05809c7ffed2c7bf1 Mon Sep 17 00:00:00 2001
From: Yuki Okushi <huyuumi.dev@gmail.com>
Date: Thu, 18 Mar 2021 01:47:03 +0900
Subject: [PATCH] Address newly added feature gates

---
 ices/53092.rs | 2 ++
 ices/74280.rs | 1 +
 ices/77987.rs | 1 +
 ices/78450.rs | 1 +
 4 files changed, 5 insertions(+)

diff --git a/ices/53092.rs b/ices/53092.rs
index 0ebcef0f..5ae1e4aa 100644
--- a/ices/53092.rs
+++ b/ices/53092.rs
@@ -1,5 +1,7 @@
 #![feature(const_fn)]
 #![feature(const_fn_union)]
+#![feature(impl_trait_in_bindings)]
+#![feature(min_type_alias_impl_trait)]
 #![feature(type_alias_impl_trait)]
 #![feature(untagged_unions)]
 
diff --git a/ices/74280.rs b/ices/74280.rs
index 8c46c822..d3fa0301 100644
--- a/ices/74280.rs
+++ b/ices/74280.rs
@@ -1,3 +1,4 @@
+#![feature(min_type_alias_impl_trait)]
 #![feature(type_alias_impl_trait)]
 
 type Test = impl Copy;
diff --git a/ices/77987.rs b/ices/77987.rs
index b3a7cd36..80119bd5 100644
--- a/ices/77987.rs
+++ b/ices/77987.rs
@@ -1,3 +1,4 @@
+#![feature(min_type_alias_impl_trait)]
 #![feature(type_alias_impl_trait)]
 
 trait Foo<T> {}
diff --git a/ices/78450.rs b/ices/78450.rs
index b764298c..726e85c1 100644
--- a/ices/78450.rs
+++ b/ices/78450.rs
@@ -1,3 +1,4 @@
+#![feature(min_type_alias_impl_trait)]
 #![feature(type_alias_impl_trait)]
 #![no_std]
 #![crate_type = "lib"]