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