]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc/blanket-reexport-item.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / rustdoc / blanket-reexport-item.rs
1 #![crate_name = "foo"]
2
3 // @has foo/struct.S.html '//div[@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::*;