summaryrefslogtreecommitdiffstats
path: root/src/test/ui/panic-runtime/want-unwind-got-abort.rs
blob: 23bfea6af15c1c99d123c200df5178d204bb6083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// build-fail
// needs-unwind
// error-pattern:is not compiled with this crate's panic strategy `unwind`
// aux-build:panic-runtime-abort.rs
// aux-build:panic-runtime-lang-items.rs
// ignore-wasm32-bare compiled with panic=abort by default

#![no_std]
#![no_main]

extern crate panic_runtime_abort;
extern crate panic_runtime_lang_items;