Sign in
rust
/
miri
/
refs/heads/master
/
.
/
tests
/
fail
/
panic
/
abort_unwind.rs
blob: 775cbf62229b3216a6f3122f9ff6a8a44d698b02 [
file
] [
log
] [
blame
] [
edit
]
//@error-in-other-file: the program aborted execution
//@normalize-stderr-test: "\n +[0-9]+:[^\n]+" -> ""
//@normalize-stderr-test: "\n +at [^\n]+" -> ""
#![
feature
(
abort_unwind
)]
fn
main
()
{
std
::
panic
::
abort_unwind
(||
panic
!(
"PANIC!!!"
));
}