2022-05-20 21:52:00 +01:00
|
|
|
//@ build-fail
|
|
|
|
|
//@ aux-build:needs-unwind.rs
|
|
|
|
|
//@ compile-flags:-C panic=abort
|
2022-06-28 17:18:01 +01:00
|
|
|
//@ no-prefer-dynamic
|
2022-05-20 21:52:00 +01:00
|
|
|
|
|
|
|
|
extern crate needs_unwind;
|
|
|
|
|
|
|
|
|
|
fn main() {}
|
2025-03-29 02:41:32 +03:00
|
|
|
|
|
|
|
|
//~? ERROR the crate `needs_unwind` requires panic strategy `unwind` which is incompatible with this crate's strategy of `abort`
|