mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +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());
|
||
|
}
|
||
|
}
|