rust/tests/compile-fail/check_arg_count_too_many_args.rs
2021-01-16 18:27:10 +01:00

10 lines
227 B
Rust

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