Replace type_alias_impl_trait
by min_type_alias_impl_trait
with no actual changes in behaviour
This makes `type_alias_impl_trait` not actually do anything anymore
This commit is contained in:
parent
19dce738f9
commit
1f7df1956a
332 changed files with 4832 additions and 594 deletions
|
@ -3,7 +3,11 @@
|
|||
//
|
||||
// edition:2018
|
||||
|
||||
#![feature(type_alias_impl_trait)]
|
||||
// revisions: min_tait full_tait
|
||||
#![feature(min_type_alias_impl_trait)]
|
||||
#![cfg_attr(full_tait, feature(impl_trait_in_bindings, type_alias_impl_trait))]
|
||||
//[full_tait]~^ WARN incomplete
|
||||
//[full_tait]~| WARN incomplete
|
||||
use std::future::Future;
|
||||
|
||||
pub struct Task<F: Future>(F);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue