mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-25 07:52:52 +00:00
18 lines
242 B
Rust
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(|_| ());
|
|
}
|