rust/tests/ui/union/union-derive-rpass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
578 B
Rust
Raw Normal View History

//@ run-pass
#![allow(dead_code)]
#![allow(unused_variables)]
// Some traits can be derived for unions.
#[derive(
Copy,
2016-08-26 16:23:42 +00:00
Clone,
2016-08-26 16:23:42 +00:00
Eq,
)]
union U {
a: u8,
b: u16,
}
2016-08-26 16:23:42 +00:00
impl PartialEq for U { fn eq(&self, rhs: &Self) -> bool { true } }
#[derive(
Clone,
Copy,
Eq
)]
union W<T: Copy> {
2016-08-26 16:23:42 +00:00
a: T,
}
impl<T: Copy> PartialEq for W<T> { fn eq(&self, rhs: &Self) -> bool { true } }
2016-08-26 16:23:42 +00:00
fn main() {
let u = U { b: 0 };
let u1 = u;
let u2 = u.clone();
2016-08-26 16:23:42 +00:00
assert!(u1 == u2);
2016-08-26 16:23:42 +00:00
let w = W { a: 0 };
let w1 = w.clone();
2016-08-26 16:23:42 +00:00
assert!(w == w1);
}