rust/tests/ui/panic-runtime/need-unwind-got-abort.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
214 B
Rust
Raw Normal View History

//@ build-fail
//@ error-pattern:is incompatible with this crate's strategy of `abort`
//@ aux-build:needs-unwind.rs
//@ compile-flags:-C panic=abort
2022-06-28 16:18:01 +00:00
//@ no-prefer-dynamic
extern crate needs_unwind;
fn main() {}