mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 05:52:05 +00:00
12 lines
106 B
Rust
12 lines
106 B
Rust
#![crate_type = "rlib"]
|
|
|
|
extern "C" {
|
|
fn bar();
|
|
}
|
|
|
|
pub fn foo() {
|
|
unsafe {
|
|
bar();
|
|
}
|
|
}
|