summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/hidden-trait-method-34423.rs
blob: f3107d2379c9aa5466dc7a9eda74a511e9bb382f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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() {}
}