2016-03-09 20:29:46 -06:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod foo {
|
|
|
|
pub struct Foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
mod bar {
|
|
|
|
pub use self::bar::Bar;
|
|
|
|
mod bar {
|
|
|
|
pub struct Bar;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has issue_28537/struct.Foo.html
|
2016-03-09 20:29:46 -06:00
|
|
|
pub use foo::Foo;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has issue_28537/struct.Bar.html
|
2016-03-09 20:29:46 -06:00
|
|
|
pub use self::bar::Bar;
|