#![no_std]
#[cfg(feature = "enabled")]
const _: () = {
use core::{hint::unreachable_unchecked, panic::PanicInfo};
#[cfg(any(not(debug_assertions), feature = "force"))]
const _: () = {
#[cfg(not(test))]
const _: () = {
#[panic_handler]
fn panic(info: &PanicInfo) -> ! {
unsafe { unreachable_unchecked() }
}
};
};
};