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