about summary refs log tree commit diff
path: root/tests/rustdoc/auxiliary/inline-default-methods.rs
blob: 10f8676e5afe0972b93993097a0f2e9b8e556533 (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) {}
}