]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-33069.rs
Rollup merge of #107819 - clubby789:x-py-root, r=jyn514
[rust.git] / tests / rustdoc / issue-33069.rs
1 pub trait Bar {}
2
3 #[doc(hidden)]
4 pub mod hidden {
5     pub struct Foo;
6 }
7
8 // @has issue_33069/trait.Bar.html
9 // @!has - '//code' 'impl Bar for Foo'
10 impl Bar for hidden::Foo {}