Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
consts
/
unwind-abort.rs
blob: b62fa81da0652160d675e353233409892df97d7f [
file
] [
log
] [
blame
]
//@ check-pass
// We don't unwind in const-eval anyways.
const
extern
"C"
fn
foo
()
{
panic
!()
}
const
fn
bar
()
{
foo
();
}
fn
main
()
{
bar
();
}