mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
10 lines
135 B
Rust
10 lines
135 B
Rust
![]() |
extern "C" {
|
||
|
fn upstream_native_f() -> i32;
|
||
|
}
|
||
|
|
||
|
pub fn rust_dep() {
|
||
|
unsafe {
|
||
|
assert!(upstream_native_f() == 0);
|
||
|
}
|
||
|
}
|