Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// aux-build:panic-handler.rs
// compile-flags: --document-private-items
// build-pass
// only-linux
#![no_std]
#![no_main]
#[panic_handler]
fn panic(_: &core::panic::PanicInfo) -> ! {
loop {}
}