We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8bba5ad + 133c1bc commit 500518aCopy full SHA for 500518a
src/libcore/macros.rs
@@ -462,7 +462,7 @@ macro_rules! writeln {
462
///
463
/// # Panics
464
465
-/// This will always panic.
+/// This will always [panic!](macro.panic.html)
466
467
/// # Examples
468
src/libstd/macros.rs
@@ -24,6 +24,11 @@
24
/// The multi-argument form of this macro panics with a string and has the
25
/// `format!` syntax for building a string.
26
27
+/// # Current implementation
28
+///
29
+/// If the main thread panics it will terminate all your threads and end your
30
+/// program with code `101`.
31
32
33
34
/// ```should_panic
0 commit comments