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

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

27 lines
404 B
Rust
Raw Normal View History

#![feature(unsized_tuple_coercion)]
2017-06-13 22:27:51 -05:00
static mut DROP_RAN: bool = false;
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {
2024-06-03 01:06:52 -05:00
unsafe {
DROP_RAN = true;
}
2017-06-13 22:27:51 -05:00
}
}
2024-06-03 01:06:52 -05:00
trait Trait {
fn dummy(&self) {}
}
2017-06-13 22:27:51 -05:00
impl Trait for Foo {}
pub fn main() {
{
let _x: Box<(i32, Trait)> = Box::<(i32, Foo)>::new((42, Foo));
}
unsafe {
assert!(DROP_RAN);
}
}