summaryrefslogtreecommitdiffstats
path: root/src/test/ui/deriving/deriving-via-extension-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/deriving/deriving-via-extension-struct.rs')
-rw-r--r--src/test/ui/deriving/deriving-via-extension-struct.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/deriving/deriving-via-extension-struct.rs b/src/test/ui/deriving/deriving-via-extension-struct.rs
new file mode 100644
index 000000000..f4d8b16a0
--- /dev/null
+++ b/src/test/ui/deriving/deriving-via-extension-struct.rs
@@ -0,0 +1,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));
+}