]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/issue-53964/panic.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / run-make-fulldeps / issue-53964 / panic.rs
1 #![crate_type = "lib"]
2 #![feature(panic_handler)]
3 #![no_std]
4
5 use core::panic::PanicInfo;
6
7 #[panic_handler]
8 fn panic(_: &PanicInfo) -> ! {
9     loop {}
10 }