2020-12-31 09:07:51 +00:00
|
|
|
//@ aux-build:issue-61592.rs
|
2024-04-06 21:41:09 +00:00
|
|
|
// https://github.com/rust-lang/rust/issues/61592
|
|
|
|
#![crate_name="bar"]
|
2020-12-31 09:07:51 +00:00
|
|
|
|
|
|
|
extern crate foo;
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has bar/index.html
|
|
|
|
//@ has - '//a[@href="#reexports"]' 'Re-exports'
|
|
|
|
//@ has - '//code' 'pub use foo::FooTrait as _;'
|
|
|
|
//@ !has - '//a[@href="trait._.html"]' ''
|
2020-12-31 09:07:51 +00:00
|
|
|
pub use foo::FooTrait as _;
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has bar/index.html
|
|
|
|
//@ has - '//a[@href="#reexports"]' 'Re-exports'
|
|
|
|
//@ has - '//code' 'pub use foo::FooStruct as _;'
|
|
|
|
//@ !has - '//a[@href="struct._.html"]' ''
|
2020-12-31 09:07:51 +00:00
|
|
|
pub use foo::FooStruct as _;
|