rustc/tests/rustdoc/auxiliary/inline-default-methods.rs
2023-08-02 10:33:26 +02:00

7 lines
96 B
Rust

// compile-flags: -Cmetadata=aux
pub trait Foo {
fn bar(&self);
fn foo(&mut self) {}
}