blob: 43ce13fd9b18524e2033b8e5d6b6d2e76bfdb76b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
pub use inner::*;
mod inner {
impl super::Blah for super::What { }
}
pub trait Blah { }
// @count issue_21474/struct.What.html \
// '//*[@id="trait-implementations-list"]//*[@class="impl has-srclink"]' 1
pub struct What;
|