]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/issue-61592.rs
New upstream version 1.65.0+dfsg1
[rustc.git] / src / test / rustdoc / issue-61592.rs
CommitLineData
5869c6ff
XL
1// aux-build:issue-61592.rs
2
3extern crate foo;
4
5// @has issue_61592/index.html
6// @has - '//a[@href="#reexports"]' 'Re-exports'
7// @has - '//code' 'pub use foo::FooTrait as _;'
f2b60f7d 8// @!has - '//a[@href="trait._.html"]' ''
5869c6ff
XL
9pub 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 _;'
f2b60f7d 14// @!has - '//a[@href="struct._.html"]' ''
5869c6ff 15pub use foo::FooStruct as _;