rust/tests/run-make/non-pie-thread-local/foo.rs

18 lines
242 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(|_| ());
}