Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
rustdoc-js
/
reexport-dedup.rs
blob: 40aea9633036692247ab0d8bfbceb254bfabd7bb [
file
] [
log
] [
blame
]
// This test enforces that the (renamed) reexports are present in the search results.
#![
crate_name
=
"foo"
]
pub
mod
fmt
{
pub
struct
Subscriber
;
}
mod
foo
{
pub
struct
AnotherOne
;
}
pub
use
foo
::
AnotherOne
;
pub
use
fmt
::
Subscriber
;