]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-16265-1.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[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 }