blob: 7ecdd26473555a90f0c2e4b47e58ad21fe4ff581 [file] [log] [blame]
//@ check-pass
//@ compile-flags: -Z unpretty=hir
//@ edition: 2015
#![feature(type_alias_impl_trait)]
trait Animal {}
fn main() {
pub type ServeFut = impl Animal;
}