blob: 9e412215512c90bc4e978bea8116d88a8637a9ee [file] [log] [blame]
#![feature(trait_alias)]
pub trait Hello {
fn hello(&self);
}
pub struct Hi;
impl Hello for Hi {
fn hello(&self) {}
}
pub trait Greet = Hello;