mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
71a147df1f
rustdoc: fix item-spacer rustdoc: use proper comment style rustdoc: change formatting where clauses for traits rustdoc: remove semicolon from provided methods update provided methods formatting
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) {}
|
|
}
|