Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
unwind-abis
/
feature-gate-c-unwind-enabled.rs
blob: 6ff5dbda2d5604ff9e47b887dd44f023267414c5 [
file
] [
log
] [
blame
]
// Test that the "C-unwind" ABI is feature-gated, and *can* be used when the
// `c_unwind` feature gate is enabled.
// check-pass
#![
feature
(
c_unwind
)]
extern
"C-unwind"
fn
f
()
{}
fn
main
()
{
f
();
}