Sign in
fuchsia
/
third_party
/
rust
/
b3827e4f3728b77bd3e60587487ebfc3cc8d901b
/
.
/
tests
/
rustdoc
/
remove-duplicates.rs
blob: 1e5bf9b01981e54faaf78c107c16196d3d5bd777 [
file
] [
log
] [
blame
]
#![
crate_name
=
"foo"
]
mod
foo
{
pub
use
bar
::*;
pub
mod
bar
{
pub
trait
Foo
{
fn
foo
();
}
}
}
//@ count foo/index.html '//*[@class="trait"]' 1
pub
use
foo
::
bar
::*;
pub
use
foo
::*;