summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/blanket-reexport-item.rs
blob: 676d656dabf471f172b7d2dca79087a696c4bf42 (plain)
1
2
3
4
5
6
7
8
#![crate_name = "foo"]

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