mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:24:04 +00:00
13 lines
252 B
Rust
13 lines
252 B
Rust
//@ run-pass
|
|
|
|
#[link(name = "rust_test_helpers", kind = "static")]
|
|
extern "C" {
|
|
pub fn rust_dbg_extern_identity_double(v: f64) -> f64;
|
|
}
|
|
|
|
pub fn main() {
|
|
unsafe {
|
|
assert_eq!(22.0_f64, rust_dbg_extern_identity_double(22.0_f64));
|
|
}
|
|
}
|