Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc
/
inline_local
/
issue-28537.rs
blob: d5ba94d2e6c9e88644b7b343186eaf6e9bbcd206 [
file
] [
log
] [
blame
] [
edit
]
#[
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
;