#![no_std] use core::panic::PanicInfo; fn main() {} #[cfg(not(test))] #[panic_handler] fn panic(_info: &PanicInfo) -> ! { loop {} }.
確定! 回上一頁