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-14 12:27:51 +09:00
static mut DROP_RAN: bool = false;
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {
2024-06-03 16:06:52 +10:00
unsafe {
DROP_RAN = true;
}
2017-06-14 12:27:51 +09:00
}
}
2024-06-03 16:06:52 +10:00
trait Trait {
fn dummy(&self) {}
}
2017-06-14 12:27:51 +09:00
impl Trait for Foo {}
pub fn main() {
{
let _x: Box<(i32, Trait)> = Box::<(i32, Foo)>::new((42, Foo));
}
unsafe {
assert!(DROP_RAN);
}
}