rust/tests/fail/function_calls/check_arg_count_abort.rs
2022-07-11 11:48:56 +00:00

11 lines
195 B
Rust

fn main() {
extern "C" {
fn abort(_: i32) -> !;
}
unsafe {
abort(1);
//~^ ERROR: Undefined Behavior: incorrect number of arguments: got 1, expected 0
}
}