]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc/issue-33069.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / rustdoc / issue-33069.rs
CommitLineData
a7813a04 1pub trait Bar {}
223e47cc 2
54a0048b
SL
3#[doc(hidden)]
4pub mod hidden {
a7813a04 5 pub struct Foo;
54a0048b 6}
a7813a04
XL
7
8// @has issue_33069/trait.Bar.html
9// @!has - '//code' 'impl Bar for Foo'
10impl Bar for hidden::Foo {}