summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/auxiliary/inline-default-methods.rs
blob: f06a20b27dce79f9f5a6e556481ebffb3f2e285d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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) {}
}