mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
38 lines
695 B
Rust
38 lines
695 B
Rust
// run-pass
|
|
#![allow(unused_assignments)]
|
|
|
|
// Drop works for union itself.
|
|
|
|
use std::mem::ManuallyDrop;
|
|
|
|
struct S;
|
|
|
|
union U {
|
|
a: ManuallyDrop<S>
|
|
}
|
|
|
|
impl Drop for S {
|
|
fn drop(&mut self) {
|
|
unsafe { CHECK += 10; }
|
|
}
|
|
}
|
|
|
|
impl Drop for U {
|
|
fn drop(&mut self) {
|
|
unsafe { CHECK += 1; }
|
|
}
|
|
}
|
|
|
|
static mut CHECK: u8 = 0;
|
|
|
|
fn main() {
|
|
unsafe {
|
|
let mut u = U { a: ManuallyDrop::new(S) };
|
|
assert_eq!(CHECK, 0);
|
|
u = U { a: ManuallyDrop::new(S) };
|
|
assert_eq!(CHECK, 1); // union itself is assigned, union is dropped, field is not dropped
|
|
*u.a = S;
|
|
assert_eq!(CHECK, 11); // union field is assigned, field is dropped
|
|
}
|
|
}
|