10 lines
208 B
Rust
10 lines
208 B
Rust
fn main() {
|
|
extern "Rust" {
|
|
fn malloc(size: usize) -> *mut std::ffi::c_void;
|
|
}
|
|
|
|
unsafe {
|
|
let _ = malloc(0); //~ ERROR: calling a function with ABI C using caller ABI Rust
|
|
};
|
|
}
|