rust/tests/ui/mir/mir_fat_ptr_drop.rs

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

33 lines
628 B
Rust
Raw Normal View History

// run-pass
#![allow(unused_variables)]
#![allow(stable_features)]
2016-02-25 21:56:11 +00:00
// test that ordinary fat pointer operations work.
#![feature(braced_empty_structs)]
#![feature(rustc_attrs)]
use std::sync::atomic;
use std::sync::atomic::Ordering::SeqCst;
2019-01-26 16:14:49 +00:00
static COUNTER: atomic::AtomicUsize = atomic::AtomicUsize::new(0);
2016-02-25 21:56:11 +00:00
struct DropMe {
}
impl Drop for DropMe {
fn drop(&mut self) {
COUNTER.fetch_add(1, SeqCst);
}
}
fn fat_ptr_move_then_drop(a: Box<[DropMe]>) {
let b = a;
}
fn main() {
let a: Box<[DropMe]> = Box::new([DropMe { }]);
fat_ptr_move_then_drop(a);
assert_eq!(COUNTER.load(SeqCst), 1);
}