]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/blanket-reexport-item.rs
Merge commit '7d53619064ab7045c383644cb445052d2a3d46db' into sync_cg_clif-2023-02-09
[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::*;