mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
433da1fc04
They pass fine.
12 lines
106 B
Rust
12 lines
106 B
Rust
#![crate_type = "rlib"]
|
|
|
|
extern "C" {
|
|
fn bar();
|
|
}
|
|
|
|
pub fn foo() {
|
|
unsafe {
|
|
bar();
|
|
}
|
|
}
|