]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-16265-1.rs
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[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 }