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