diff options
Diffstat (limited to 'tests/rustdoc-ui/auxiliary/panic-handler.rs')
-rw-r--r-- | tests/rustdoc-ui/auxiliary/panic-handler.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/rustdoc-ui/auxiliary/panic-handler.rs b/tests/rustdoc-ui/auxiliary/panic-handler.rs new file mode 100644 index 000000000..0aaaeee10 --- /dev/null +++ b/tests/rustdoc-ui/auxiliary/panic-handler.rs @@ -0,0 +1,9 @@ +// compile-flags: -C panic=abort + +#![no_std] +#![no_main] + +#[panic_handler] +fn panic(_: &core::panic::PanicInfo) -> ! { + loop {} +} |