summaryrefslogtreecommitdiffstats
path: root/src/test/ui/deriving/deriving-via-extension-struct.rs
blob: f4d8b16a02f2c49a739a3b403f76d44b59c213fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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));
}