mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
16 lines
450 B
Rust
16 lines
450 B
Rust
// 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 _;'
|
|
// @!has - '//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 _;'
|
|
// @!has - '//a[@href="struct._.html"]' ''
|
|
pub use foo::FooStruct as _;
|