blob: 7ad29c88bcfe504dbb884961586e4d61890a9461 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//@ check-pass
//@ compile-flags: -Z unpretty=hir
//@ edition: 2015
#![feature(type_alias_impl_trait)]
#[attr = MacroUse {arguments: UseAll}]
extern crate std;
#[prelude_import]
use ::std::prelude::rust_2015::*;
trait Animal { }
fn main() {
type ServeFut = /*impl Trait*/;
}
|