Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
126 B
Rust
Raw Normal View History

extern "C" {
fn local_native_f() -> i32;
}
pub fn main() {
unsafe {
assert!(local_native_f() == 0);
};
}