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