rust/src/test/rustdoc/issue-61592.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
450 B
Rust
Raw Normal View History

// aux-build:issue-61592.rs
extern crate foo;
// @has issue_61592/index.html
// @has - '//a[@href="#reexports"]' 'Re-exports'
// @has - '//code' 'pub use foo::FooTrait as _;'
2022-08-12 04:44:07 +00:00
// @!hasraw - '//a[@href="trait._.html"]'
pub use foo::FooTrait as _;
// @has issue_61592/index.html
// @has - '//a[@href="#reexports"]' 'Re-exports'
// @has - '//code' 'pub use foo::FooStruct as _;'
2022-08-12 04:44:07 +00:00
// @!hasraw - '//a[@href="struct._.html"]'
pub use foo::FooStruct as _;