]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-21474.rs
Rollup merge of #107769 - compiler-errors:pointer-like, r=eholk
[rust.git] / tests / rustdoc / issue-21474.rs
1 pub use inner::*;
2
3 mod inner {
4     impl super::Blah for super::What { }
5 }
6
7 pub trait Blah { }
8
9 // @count issue_21474/struct.What.html \
10 //        '//*[@id="trait-implementations-list"]//*[@class="impl"]' 1
11 pub struct What;