rust/tests/run-make/panic-impl-transitive/panic-impl-provider.rs

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

10 lines
130 B
Rust
Raw Normal View History

2018-05-29 10:33:11 +00:00
#![crate_type = "rlib"]
#![no_std]
use core::panic::PanicInfo;
#[panic_handler]
2018-05-29 10:33:11 +00:00
fn panic(info: &PanicInfo) -> ! {
loop {}
}