mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 12:18:33 +00:00
12 lines
208 B
Rust
12 lines
208 B
Rust
![]() |
#[link(name = "xyz")]
|
||
|
extern "C" {
|
||
|
fn c_always_inlined() -> u32;
|
||
|
fn c_never_inlined() -> u32;
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
unsafe {
|
||
|
println!("blub: {}", c_always_inlined() + c_never_inlined());
|
||
|
}
|
||
|
}
|