2020-12-31 03:07:51 -06:00
|
|
|
// 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 23:56:16 -05:00
|
|
|
// @!has - '//a[@href="trait._.html"]' ''
|
2020-12-31 03:07:51 -06:00
|
|
|
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 23:56:16 -05:00
|
|
|
// @!has - '//a[@href="struct._.html"]' ''
|
2020-12-31 03:07:51 -06:00
|
|
|
pub use foo::FooStruct as _;
|