rust/tests/run-pass-valgrind/dst-dtor-4.rs

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

22 lines
360 B
Rust
Raw Normal View History

#![feature(unsized_tuple_coercion)]
2017-06-14 03:27:51 +00:00
static mut DROP_RAN: isize = 0;
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {
2024-06-03 06:06:52 +00:00
unsafe {
DROP_RAN += 1;
}
2017-06-14 03:27:51 +00:00
}
}
pub fn main() {
{
let _x: Box<(i32, [Foo])> = Box::<(i32, [Foo; 3])>::new((42, [Foo, Foo, Foo]));
}
unsafe {
assert_eq!(DROP_RAN, 3);
}
}