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

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