blob: 869b3e4f43347d30bfd0b5c3ae30e1e91e33bc0f [file] [log] [blame]
// Ensure that coroutine drop glue is valid when mixing different panic
// strategies. Regression test for #116953.
//
// no-prefer-dynamic
// build-pass
// aux-build:unwind-aux.rs
// compile-flags: -Cpanic=abort
// needs-unwind
extern crate unwind_aux;
pub fn main() {
unwind_aux::run(String::new());
}