mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
433da1fc04
They pass fine.
16 lines
225 B
Rust
16 lines
225 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();
|
|
}
|