We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd9630c + 37d4302 commit d93b438Copy full SHA for d93b438
tests/rustdoc-ui/auxiliary/panic-handler.rs
@@ -0,0 +1,9 @@
1
+// compile-flags: -C panic=abort
2
+
3
+#![no_std]
4
+#![no_main]
5
6
+#[panic_handler]
7
+fn panic(_: &core::panic::PanicInfo) -> ! {
8
+ loop {}
9
+}
tests/rustdoc-ui/issue-107918.rs
@@ -0,0 +1,11 @@
+// aux-build:panic-handler.rs
+// compile-flags: --document-private-items
+// build-pass
10
11
0 commit comments