mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-02 22:38:40 +00:00
11 lines
172 B
Rust
11 lines
172 B
Rust
// Tests that linking to C++ code with global destructors works.
|
|
|
|
extern "C" {
|
|
fn get() -> u32;
|
|
}
|
|
|
|
fn main() {
|
|
let i = unsafe { get() };
|
|
assert_eq!(i, 1234);
|
|
}
|