rust/src/test/rustdoc/issue-16265-1.rs
2018-12-25 21:08:33 -07:00

8 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 }
}
}