rust/tests/run-make/non-pie-thread-local/foo.rs
2024-05-22 15:25:43 -04: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(|_| ());
}