summary refs log tree commit diff
path: root/src/test/ui/issues/issue-60662.rs
blob: 967c5f8ed7313eb40b61e9552cb5a99b6aa28be6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// check-pass
// compile-flags: -Z unpretty=hir

#![feature(type_alias_impl_trait)]

trait Animal {
}

fn main() {
    pub type ServeFut = impl Animal;
}