From 9169e697f7bbefdca9b121bd146bc1a17374c7a5 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 28 Jul 2021 18:33:46 -0700 Subject: [PATCH] Feature min_type_alias_impl_trait renamed to type_alias_impl_trait As of nightly-2021-07-29: error[E0557]: feature has been removed --> tests/test.rs:3:33 | 3 | feature(min_specialization, min_type_alias_impl_trait) | ^^^^^^^^^^^^^^^^^^^^^^^^^ feature has been removed | = note: removed in favor of full type_alias_impl_trait error[E0658]: `impl Trait` in type aliases is unstable --> tests/test.rs:1299:22 | 1299 | type Assoc = impl Sized; | ^^^^^^^^^^ | = note: see issue #63063 for more information = help: add `#![feature(type_alias_impl_trait)]` to the crate attributes to enable --- tests/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.rs b/tests/test.rs index 47b233c..348f3f9 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,6 +1,6 @@ #![cfg_attr( async_trait_nightly_testing, - feature(min_specialization, min_type_alias_impl_trait) + feature(min_specialization, type_alias_impl_trait) )] #![allow( clippy::let_underscore_drop,