blob: 896fc1a78f13f94ff997826ae39f023e225b61b7 (
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"]' 1
pub struct What;
|