blob: 768d29876b971eb36713fe076abe5ba23639fb3d [file] [log] [blame]
pub static mut DROPPED: bool = false;
pub struct S {
_unsized: [u8]
}
impl Drop for S {
fn drop(&mut self) {
unsafe {
DROPPED = true;
}
}
}