2021-05-13 14:42:25 +00:00
|
|
|
// revisions: mirunsafeck thirunsafeck
|
|
|
|
// [thirunsafeck]compile-flags: -Z thir-unsafeck
|
|
|
|
|
2018-12-19 19:58:20 +00:00
|
|
|
use std::mem::ManuallyDrop;
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
#[derive(Clone)] //~ ERROR the trait bound `U1: Copy` is not satisfied
|
2016-08-26 16:23:42 +00:00
|
|
|
union U1 {
|
|
|
|
a: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
union U2 {
|
|
|
|
a: u8, // OK
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Copy for U2 {}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
union U3 {
|
|
|
|
a: u8, // OK
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
2018-12-19 19:58:20 +00:00
|
|
|
union U4<T: Copy> {
|
2016-08-26 16:23:42 +00:00
|
|
|
a: T, // OK
|
|
|
|
}
|
|
|
|
|
2018-12-19 19:58:20 +00:00
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
union U5<T> {
|
|
|
|
a: ManuallyDrop<T>, // OK
|
|
|
|
}
|
|
|
|
|
2016-08-26 16:23:42 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
struct CloneNoCopy;
|
|
|
|
|
|
|
|
fn main() {
|
2018-12-19 19:58:20 +00:00
|
|
|
let u = U5 { a: ManuallyDrop::new(CloneNoCopy) };
|
2020-09-26 21:20:14 +00:00
|
|
|
let w = u.clone(); //~ ERROR the method
|
2016-08-26 16:23:42 +00:00
|
|
|
}
|