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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
242 B
Rust
Raw Normal View History

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