blob: d8168f2990c4675b68cb6af0716eee43e0b4355c [file] [log] [blame]
// run-pass
#![feature(trait_alias)]
pub trait Foo {}
pub trait FooAlias = Foo;
fn main() {}