rust/tests/run-make/issue-24445/foo.rs
2023-03-30 07:34:55 -05:00

16 lines
230 B
Rust

#![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(|_| ());
}