blob: e643dba124537ed91ba34eb69a0ecab1b7f187a2 [file] [log] [blame]
//@ 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() {
type ServeFut = /*impl Trait*/;
}