Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
type-alias-impl-trait
/
issue-60662.rs
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
;
}