Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
traits
/
alias
/
auxiliary
/
greeter.rs
blob: 9e412215512c90bc4e978bea8116d88a8637a9ee [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
trait_alias
)]
pub
trait
Hello
{
fn
hello
(&
self
);
}
pub
struct
Hi
;
impl
Hello
for
Hi
{
fn
hello
(&
self
)
{}
}
pub
trait
Greet
=
Hello
;