]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-61592.rs
Merge commit 'd7b5cbf065b88830ca519adcb73fad4c0d24b1c7' into clippyup
[rust.git] / src / test / rustdoc / issue-61592.rs
1 // aux-build:issue-61592.rs
2
3 extern crate foo;
4
5 // @has issue_61592/index.html
6 // @has - '//a[@href="#reexports"]' 'Re-exports'
7 // @has - '//code' 'pub use foo::FooTrait as _;'
8 // @!has - '//a[@href="trait._.html"]'
9 pub use foo::FooTrait as _;
10
11 // @has issue_61592/index.html
12 // @has - '//a[@href="#reexports"]' 'Re-exports'
13 // @has - '//code' 'pub use foo::FooStruct as _;'
14 // @!has - '//a[@href="struct._.html"]'
15 pub use foo::FooStruct as _;