rust/tests/run-pass/call_drop_through_trait_object_rc.rs

23 lines
335 B
Rust

trait Foo {}
struct Bar;
static mut DROP_CALLED: bool = false;
impl Drop for Bar {
fn drop(&mut self) {
unsafe { DROP_CALLED = true; }
}
}
impl Foo for Bar {}
use std::rc::Rc;
fn main() {
let b: Rc<Foo> = Rc::new(Bar);
assert!(unsafe { !DROP_CALLED });
drop(b);
assert!(unsafe { DROP_CALLED });
}