Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
traits
/
alias
/
auxiliary
/
greeter.rs
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
;