rust/src/test/rustdoc/issue-21474.rs
2018-12-25 21:08:33 -07:00

11 lines
216 B
Rust

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;