]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/blanket-reexport-item.rs
Rollup merge of #68945 - mjbshaw:once_is_completed, r=LukasKalbertodt
[rust.git] / src / test / rustdoc / blanket-reexport-item.rs
1 #![crate_name = "foo"]
2
3 // @has foo/struct.S.html '//h3[@id="impl-Into%3CU%3E"]//code' 'impl<T, U> Into<U> for T'
4 pub struct S2 {}
5 mod m {
6     pub struct S {}
7 }
8 pub use m::*;