]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/inline-default-methods.rs
Rollup merge of #107598 - chenyukang:yukang/fix-core-bench, r=thomcc
[rust.git] / tests / rustdoc / inline-default-methods.rs
1 // aux-build:inline-default-methods.rs
2 // ignore-cross-compile
3
4 extern crate inline_default_methods;
5
6 // @has inline_default_methods/trait.Foo.html
7 // @has - '//pre[@class="rust item-decl"]' 'fn bar(&self);'
8 // @has - '//pre[@class="rust item-decl"]' 'fn foo(&mut self) { ... }'
9 pub use inline_default_methods::Foo;