Sign in
rust
/
rust
/
dc9879cb3d3446c41b6d7d6813b7bfd17da1134f
/
.
/
tests
/
ui
/
statics
/
auxiliary
/
check_static_recursion_foreign_helper.rs
blob: bcab5f238c372d2febd123e3697f39fcd621d42f [
file
] [
log
] [
blame
]
// Helper definition for test/run-pass/check-static-recursion-foreign.rs.
#![
feature
(
rustc_private
)]
#![
crate_name
=
"check_static_recursion_foreign_helper"
]
#![
crate_type
=
"lib"
]
use
std
::
ffi
::
c_int
;
#[
no_mangle
]
pub
static
test_static
:
c_int
=
0
;