rust/tests/run-make/foreign-rust-exceptions/foo.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
222 B
Rust
Raw Normal View History

2022-10-23 15:30:37 -05:00
#[cfg_attr(not(windows), link(name = "bar"))]
#[cfg_attr(windows, link(name = "bar.dll"))]
extern "C-unwind" {
fn panic();
}
fn main() {
let _ = std::panic::catch_unwind(|| {
unsafe { panic() };
});
}