Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
rustdoc
/
inline_local
/
issue-28537.rs
blob: da9cc4c940dbe6074a453b5098af4e6a1937c4ae [
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
;