mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-09 22:37:34 +00:00
9 lines
171 B
Rust
9 lines
171 B
Rust
// no-prefer-dynamic
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
#[link(name = "rust_test_helpers", kind = "static")]
|
|
extern "C" {
|
|
pub fn rust_dbg_extern_identity_u32(u: u32) -> u32;
|
|
}
|