Skip to content

Commit 9169e69

Browse files
committed
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 <rust-lang/rust#63063> for more information = help: add `#![feature(type_alias_impl_trait)]` to the crate attributes to enable
1 parent 1db22bb commit 9169e69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![cfg_attr(
22
async_trait_nightly_testing,
3-
feature(min_specialization, min_type_alias_impl_trait)
3+
feature(min_specialization, type_alias_impl_trait)
44
)]
55
#![allow(
66
clippy::let_underscore_drop,

0 commit comments

Comments
 (0)