blob: d1f337819f8b02bbe204b0bb367b1acc9368f3b1 [file]
//@ check-pass
//@ compile-flags: -Z unpretty=hir
//@ edition: 2015
#![feature(type_alias_impl_trait)]
extern crate std;
#[prelude_import]
use ::std::prelude::rust_2015::*;
trait Animal { }
fn main() {
type ServeFut = /*impl Trait*/;
}