summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/issues/issue-107918.rs
blob: 0ddb3dc921501041c32ff315c81c8a0993b05660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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 {}
}