mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
18 lines
252 B
Rust
18 lines
252 B
Rust
#[doc(hidden)]
|
|
pub mod foo {
|
|
pub struct Foo;
|
|
}
|
|
|
|
mod bar {
|
|
pub use self::bar::Bar;
|
|
mod bar {
|
|
pub struct Bar;
|
|
}
|
|
}
|
|
|
|
// @has issue_28537/struct.Foo.html
|
|
pub use foo::Foo;
|
|
|
|
// @has issue_28537/struct.Bar.html
|
|
pub use self::bar::Bar;
|