Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
traits-default-method-trivial.rs
blob: 5fc4d73f175b0a92bc87fa4a3639d9eb92725a84 [
file
]
trait
Cat
{
fn
meow
()
->
bool
;
fn
scratch
()
->
bool
;
fn
purr
()
->
bool
{
true
}
}
impl
int
:
Cat
{
fn
meow
()
->
bool
{
self
.
scratch
()
}
fn
scratch
()
->
bool
{
self
.
purr
()
}
}
fn
main
()
{
assert
5.meow
();
}