]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/blanket-reexport-item.rs
Rollup merge of #93755 - ChayimFriedman2:allow-comparing-vecs-with-different-allocato...
[rust.git] / src / test / rustdoc / blanket-reexport-item.rs
1 #![crate_name = "foo"]
2
3 // @has foo/struct.S.html '//*[@id="impl-Into%3CU%3E"]//h3[@class="code-header in-band"]' 'impl<T, U> Into<U> for T'
4 pub struct S2 {}
5 mod m {
6     pub struct S {}
7 }
8 pub use m::*;