]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/remove-duplicates.rs
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[rust.git] / tests / rustdoc / remove-duplicates.rs
1 #![crate_name = "foo"]
2
3 mod foo {
4     pub use bar::*;
5     pub mod bar {
6         pub trait Foo {
7             fn foo();
8         }
9     }
10 }
11
12 // @count foo/index.html '//*[@class="trait"]' 1
13 pub use foo::bar::*;
14 pub use foo::*;