]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-34423.rs
Rollup merge of #100509 - BoxyUwU:merge_hrtb_with_higher_rank_trait_bound, r=compiler...
[rust.git] / src / test / 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 }