rust/tests/compile-fail/function_calls/check_arg_count_abort.rs
2021-06-11 15:47:12 +08: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
}
}