rust/tests/rustdoc-ui/issues/issue-107918.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
205 B
Rust
Raw Normal View History

2023-02-24 11:15:56 -06:00
//@ aux-build:panic-handler.rs
//@ compile-flags: --document-private-items
//@ build-pass
//@ only-linux
2023-02-24 11:15:56 -06:00
#![no_std]
#![no_main]
#[panic_handler]
fn panic(_: &core::panic::PanicInfo) -> ! {
loop {}
}