]> git.proxmox.com Git - rustc.git/blob - tests/ui/rustdoc/hidden-doc-associated-item.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / rustdoc / hidden-doc-associated-item.rs
1 // check-pass
2 // See issue #85526.
3 // This test should produce no warnings.
4
5 #![deny(missing_docs)]
6 //! Crate docs
7
8 #[doc(hidden)]
9 pub struct Foo;
10
11 impl Foo {
12 pub fn bar() {}
13 }
14
15 fn main() {}