rust/tests/rustdoc-ui/issues/issue-107918.rs
Jake Goulding 469d34b39b Mark Rustdoc test as Linux-only
Due to incorrect CI configuration, this test was not being run on
macOS. aarch64-apple-darwin will start running it, so we correct the
configuration.
2023-11-08 08:53:58 -05:00

13 lines
201 B
Rust

// 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 {}
}