rust/tests/run-pass/call_drop_on_array_elements.rs

22 lines
437 B
Rust
Raw Normal View History

struct Bar(i32); // ZSTs are tested separately
2016-11-04 11:34:33 -05:00
static mut DROP_COUNT: usize = 0;
impl Drop for Bar {
fn drop(&mut self) {
unsafe { DROP_COUNT += 1; }
}
}
fn main() {
let b = [Bar(0), Bar(0), Bar(0), Bar(0)];
2016-11-04 11:34:33 -05:00
assert_eq!(unsafe { DROP_COUNT }, 0);
drop(b);
assert_eq!(unsafe { DROP_COUNT }, 4);
// check empty case
let b : [Bar; 0] = [];
drop(b);
assert_eq!(unsafe { DROP_COUNT }, 4);
2016-11-04 11:34:33 -05:00
}