rust/tests/run-pass-valgrind/cast-enum-with-dtor.rs

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

35 lines
712 B
Rust
Raw Normal View History

#![allow(dead_code, cenum_impl_drop_cast)]
// check dtor calling order when casting enums.
2024-06-03 14:06:52 +08:00
use std::mem;
use std::sync::atomic;
use std::sync::atomic::Ordering;
enum E {
A = 0,
B = 1,
2024-06-03 14:06:52 +08:00
C = 2,
}
static FLAG: atomic::AtomicUsize = atomic::AtomicUsize::new(0);
impl Drop for E {
fn drop(&mut self) {
// avoid dtor loop
unsafe { mem::forget(mem::replace(self, E::B)) };
2024-06-03 14:06:52 +08:00
FLAG.store(FLAG.load(Ordering::SeqCst) + 1, Ordering::SeqCst);
}
}
fn main() {
assert_eq!(FLAG.load(Ordering::SeqCst), 0);
{
let e = E::C;
assert_eq!(e as u32, 2);
2022-10-14 00:46:33 +08:00
assert_eq!(FLAG.load(Ordering::SeqCst), 1);
}
assert_eq!(FLAG.load(Ordering::SeqCst), 1);
}