]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-16265-1.rs
Auto merge of #106959 - tmiasko:opt-funclets, r=davidtwco
[rust.git] / tests / rustdoc / issue-16265-1.rs
1 pub struct Foo;
2
3 // @hasraw issue_16265_1/traits/index.html 'source'
4 pub mod traits {
5     impl PartialEq for super::Foo {
6         fn eq(&self, _: &super::Foo) -> bool {
7             true
8         }
9     }
10 }