summary refs log tree commit diff
path: root/tests/rustdoc/blanket-reexport-item.rs
blob: 199a47019a2e4f4c78c2f1e99dccd4f634228388 (plain)
1
2
3
4
5
6
7
8
#![crate_name = "foo"]

//@ has foo/struct.S.html '//*[@id="impl-Into%3CU%3E-for-T"]//h3[@class="code-header"]' 'impl<T, U> Into<U> for T'
pub struct S2 {}
mod m {
    pub struct S {}
}
pub use m::*;