1f7df1956a
This makes `type_alias_impl_trait` not actually do anything anymore
16 lines
297 B
Plaintext
16 lines
297 B
Plaintext
// check-pass
|
|
// compile-flags: -Z unpretty=hir
|
|
|
|
// revisions: min_tait full_tait
|
|
#![feature(min_type_alias_impl_trait)]
|
|
#[prelude_import]
|
|
use ::std::prelude::rust_2015::*;
|
|
#[macro_use]
|
|
extern crate std;
|
|
|
|
trait Animal { }
|
|
|
|
fn main() {
|
|
pub type ServeFut = /*impl Trait*/;
|
|
}
|