blob: 30d2537750d75f1340ad1f8aa55740a6feb30de0 [file] [log] [blame] [edit]
#![crate_type = "staticlib"]
struct Destroy;
impl Drop for Destroy {
fn drop(&mut self) {
println!("drop");
}
}
thread_local! {
static X: Destroy = Destroy
}
#[no_mangle]
pub extern "C" fn foo() {
X.with(|_| ());
}