about summary refs log tree commit diff
path: root/tests/ui/type-alias-impl-trait/issue-60662.rs
blob: 7ecdd26473555a90f0c2e4b47e58ad21fe4ff581 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass
//@ compile-flags: -Z unpretty=hir
//@ edition: 2015

#![feature(type_alias_impl_trait)]

trait Animal {}

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