mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
285 B
Rust
17 lines
285 B
Rust
// run-pass
|
|
#[derive(PartialEq, Debug)]
|
|
struct Foo {
|
|
x: isize,
|
|
y: isize,
|
|
z: isize,
|
|
}
|
|
|
|
pub fn main() {
|
|
let a = Foo { x: 1, y: 2, z: 3 };
|
|
let b = Foo { x: 1, y: 2, z: 3 };
|
|
assert_eq!(a, b);
|
|
assert!(!(a != b));
|
|
assert!(a.eq(&b));
|
|
assert!(!a.ne(&b));
|
|
}
|