blob: c97644e7f87237384cd3ead7f275f5dcec45ecf3 (
plain)
1
2
3
4
5
6
7
8
9
|
// aux-build:inline-default-methods.rs
// ignore-cross-compile
extern crate inline_default_methods;
// @has inline_default_methods/trait.Foo.html
// @has - '//*[@class="rust trait"]' 'fn bar(&self);'
// @has - '//*[@class="rust trait"]' 'fn foo(&mut self) { ... }'
pub use inline_default_methods::Foo;
|