rust/src/test/rustdoc/issue-16265-1.rs

9 lines
180 B
Rust

pub struct Foo;
// @has issue_16265_1/traits/index.html '[src]'
pub mod traits {
impl PartialEq for super::Foo {
fn eq(&self, _: &super::Foo) -> bool { true }
}
}