blob: 4c530f72b8ab6fd071652ee84ab49c903ec18141 (
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="implementations-list"]/*[@class="impl"]' 1
pub struct What;
|