blob: beb7628b5e09b4d9a00313473100d2a0cc14f77f [file] [log] [blame] [edit]
//@ check-pass
// See issue #85526.
// This test should produce no warnings.
#![deny(missing_docs)]
//! Crate docs
#[doc(hidden)]
pub struct Foo;
impl Foo {
pub fn bar() {}
}
fn main() {}