Sign in
◑
Theme
rust
/
rust
/
9ccafdc0f8d93f25159bee054ff1bd4e0143c8a4
/
.
/
tests
/
rustdoc-html
/
auxiliary
/
inline-default-methods.rs
blob: 10f8676e5afe0972b93993097a0f2e9b8e556533 [
file
]
//@ compile-flags: -Cmetadata=aux
pub
trait
Foo
{
fn
bar
(&
self
);
fn
foo
(&
mut
self
)
{}
}
pub
trait
Bar
{
fn
bar
(&
self
);
fn
foo1
(&
mut
self
)
{}
fn
foo2
(&
mut
self
)
{}
}
pub
trait
Baz
{
fn
bar1
(&
self
);
fn
bar2
(&
self
);
fn
foo
(&
mut
self
)
{}
}