blob: dcf935c5780c5a030cc72ea8d84f31ab66ee3892 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
// compile-flags: -Z unpretty=hir
#![feature(type_alias_impl_trait)]
trait Animal {
}
fn main() {
pub type ServeFut = impl Animal;
}