Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
static-unwinding
/
lib.rs
blob: 975de43cfd8d9d0598b4d946f5659f958a2d29d4 [
file
] [
log
] [
blame
] [
edit
]
#![
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
();
}