]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-16265-1.rs
Sync rust-lang/portable-simd@03f6fbb21e6050da2a05b3ce8f480c020b384916
[rust.git] / src / test / rustdoc / issue-16265-1.rs
1 pub struct Foo;
2
3 // @has 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 }