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();
|
|
}
|
|
}
|