Sign in
rust
/
rust-lang
/
rust
/
160e7623e8cbbf1feab2b6e2a24733a98c7bde9c
/
.
/
tests
/
rustdoc-js
/
reexport-dedup.rs
blob: 83c23d5c3664aa2cb61bac608c47e787dc7edce3 [
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
fmt
::
Subscriber
;
pub
use
foo
::
AnotherOne
;