]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/foreign-rust-exceptions/bar.rs
Rollup merge of #104849 - GuillaumeGomez:source-code-sidebar-css-migration, r=notriddle
[rust.git] / src / test / run-make-fulldeps / foreign-rust-exceptions / bar.rs
1 #![crate_type = "cdylib"]
2 #![feature(c_unwind)]
3
4 #[no_mangle]
5 extern "C-unwind" fn panic() {
6     panic!();
7 }