mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-25 02:53:35 +00:00
17 lines
225 B
Rust
17 lines
225 B
Rust
#![feature(linkage)]
|
|
|
|
#[no_mangle]
|
|
#[linkage = "external"]
|
|
static BAZ: i32 = 21;
|
|
|
|
#[link(name = "foo", kind = "static")]
|
|
extern "C" {
|
|
fn what() -> i32;
|
|
}
|
|
|
|
fn main() {
|
|
unsafe {
|
|
assert_eq!(what(), BAZ);
|
|
}
|
|
}
|