mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
204 B
Rust
11 lines
204 B
Rust
pub struct Foo;
|
|
|
|
// @hasraw issue_16265_1/traits/index.html 'source'
|
|
pub mod traits {
|
|
impl PartialEq for super::Foo {
|
|
fn eq(&self, _: &super::Foo) -> bool {
|
|
true
|
|
}
|
|
}
|
|
}
|