rustc/tests/rustdoc/remove-duplicates.rs
2024-10-21 11:08:01 +02:00

15 lines
223 B
Rust

#![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::*;