blob: 10f8676e5afe0972b93993097a0f2e9b8e556533 [file] [log] [blame]
//@ 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) {}
}