mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 17:25:45 +00:00
19 lines
270 B
Rust
19 lines
270 B
Rust
// 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) {}
|
|
}
|