rust/tests/compile-fail/check_arg_count_too_few_args.rs

10 lines
209 B
Rust
Raw Normal View History

2020-05-04 22:22:00 -05:00
fn main() {
extern "C" {
fn malloc() -> *mut std::ffi::c_void;
}
unsafe {
let _ = malloc(); //~ ERROR Undefined Behavior: incorrect number of arguments: got 0, expected 1
};
}