]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-34423.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / rustdoc / issue-34423.rs
1 pub struct Foo;
2
3 pub trait Bar {
4     #[doc(hidden)]
5     fn bar() {}
6 }
7
8 impl Bar for Foo {
9     fn bar() {}
10 }