summaryrefslogtreecommitdiffstats
path: root/src/test/ui/auxiliary/check_static_recursion_foreign_helper.rs
blob: 5330b7a92a37b666fbe39841ea3a6eb384928bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Helper definition for test/run-pass/check-static-recursion-foreign.rs.

#![feature(rustc_private)]

#![crate_name = "check_static_recursion_foreign_helper"]
#![crate_type = "lib"]

extern crate libc;

#[no_mangle]
pub static test_static: libc::c_int = 0;