rust/tests/fail/function_calls/check_arg_count_abort.rs
2022-06-01 10:53:38 -04:00

11 lines
194 B
Rust

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