blob: 14a49f20e6b22f9850e8c588f4c779f8e78d7a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// check-pass
// compile-flags: -Z unpretty=hir
#![feature(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*/;
}
|