Sign in
rust
/
rust
/
86193fa8a04bcbdeee9917c2a2d1e2ea7054c0a6
/
.
/
tests
/
rustdoc
/
inline_local
/
issue-28537.rs
blob: d5ba94d2e6c9e88644b7b343186eaf6e9bbcd206 [
file
]
#[
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
;