]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/blanket-reexport-item.rs
Auto merge of #107549 - Zoxc:rustc-shared, r=jyn514
[rust.git] / tests / rustdoc / blanket-reexport-item.rs
1 #![crate_name = "foo"]
2
3 // @has foo/struct.S.html '//*[@id="impl-Into%3CU%3E-for-S"]//h3[@class="code-header"]' 'impl<T, U> Into<U> for T'
4 pub struct S2 {}
5 mod m {
6     pub struct S {}
7 }
8 pub use m::*;