mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
12 lines
222 B
Rust
12 lines
222 B
Rust
#[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() };
|
|
});
|
|
}
|