mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +00:00
13 lines
326 B
Rust
13 lines
326 B
Rust
//@ build-fail
|
|
//@ needs-unwind
|
|
//@ aux-build:panic-runtime-abort.rs
|
|
//@ aux-build:panic-runtime-lang-items.rs
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
extern crate panic_runtime_abort;
|
|
extern crate panic_runtime_lang_items;
|
|
|
|
//~? ERROR the linked panic runtime `panic_runtime_abort` is not compiled with this crate's panic strategy `unwind`
|