]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-34423.rs
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[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 }