blob: 437f0001fcfc443afb0ad1bf66e6ec95c2ad1a56 (
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"]' 'impl<T, U> Into<U> for T'
pub struct S2 {}
mod m {
pub struct S {}
}
pub use m::*;
|