summaryrefslogtreecommitdiffstats
path: root/tests/run-make/foreign-rust-exceptions/bar.rs
blob: 1d865b429fa95b4a0deedbef5c4f44f80eca6339 (plain)
1
2
3
4
5
6
#![crate_type = "cdylib"]

#[no_mangle]
extern "C-unwind" fn panic() {
    panic!();
}