blob: 8f3572e35bcd15f7e718d25b312dbcedf7dd3d94 [file] [log] [blame] [edit]
//@ check-pass
// https://github.com/rust-lang/rust/issues/34423
pub struct Foo;
pub trait Bar {
#[doc(hidden)]
fn bar() {}
}
impl Bar for Foo {
fn bar() {}
}