about summary refs log tree commit diff
path: root/tests/rustdoc/inline-default-methods.rs
blob: e6468316f583b46b7f2dba066807c94b9dd89f62 (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 - '//pre[@class="rust item-decl"]' 'fn bar(&self);'
// @has - '//pre[@class="rust item-decl"]' 'fn foo(&mut self) { ... }'
pub use inline_default_methods::Foo;