mirror of
https://git.proxmox.com/git/rustc
synced 2025-11-04 16:13:23 +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
|
|
}
|
|
}
|
|
}
|