mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 15:02:19 +00:00
21 lines
250 B
Rust
21 lines
250 B
Rust
#![crate_type = "rlib"]
|
|
|
|
pub static mut statik: isize = 0;
|
|
|
|
struct A;
|
|
impl Drop for A {
|
|
fn drop(&mut self) {
|
|
unsafe {
|
|
statik = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn callback<F>(f: F)
|
|
where
|
|
F: FnOnce(),
|
|
{
|
|
let _a = A;
|
|
f();
|
|
}
|