Sign in
rust
/
miri
/
HEAD
/
.
/
tests
/
fail
/
function_calls
/
check_arg_count_abort.rs
blob: db7bd223bd45ab50f42542806bde8ad60e1030aa [
file
] [
log
] [
blame
]
fn
main
()
{
extern
"C"
{
fn
abort
(
_
:
i32
)
->
!;
}
unsafe
{
abort
(
1
);
//~^ ERROR: Undefined Behavior: incorrect number of arguments for `abort`: got 1, expected 0
}
}