mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-03 06:25:40 +00:00
10 lines
231 B
Rust
10 lines
231 B
Rust
//@ build-fail
|
|
//@ needs-unwind
|
|
//@ aux-build:needs-abort.rs
|
|
|
|
extern crate needs_abort;
|
|
|
|
fn main() {}
|
|
|
|
//~? ERROR the crate `needs_abort` requires panic strategy `abort` which is incompatible with this crate's strategy of `unwind`
|