]> git.proxmox.com Git - rustc.git/blame - tests/run-make-fulldeps/issue-53964/panic.rs
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / run-make-fulldeps / issue-53964 / panic.rs
CommitLineData
83c7162d 1#![crate_type = "lib"]
b7449926
XL
2#![feature(panic_handler)]
3#![no_std]
e9174d1e 4
b7449926 5use core::panic::PanicInfo;
476ff2be 6
b7449926
XL
7#[panic_handler]
8fn panic(_: &PanicInfo) -> ! {
9 loop {}
10}