rust/tests/ui/deriving/deriving-via-extension-struct.rs
2023-01-11 09:32:08 +00:00

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));
}