mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
10 lines
209 B
Rust
10 lines
209 B
Rust
// build-fail
|
|
// error-pattern:is incompatible with this crate's strategy of `abort`
|
|
// aux-build:needs-unwind.rs
|
|
// compile-flags:-C panic=abort
|
|
// no-prefer-dynamic
|
|
|
|
extern crate needs_unwind;
|
|
|
|
fn main() {}
|