Skip to content

Commit eab1dc9

Browse files
committed
Stabilize the core::panic module
`std::panic` is already stable. `core::panic::PanicInfo` and `core::panic::Location` are stable and can be used through that path because of a bug in stability checking: #15702
1 parent 392e5a7 commit eab1dc9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/libcore/panic.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
//! Panic support in the standard library.
22
3-
#![unstable(feature = "core_panic_info",
4-
reason = "newly available in libcore",
5-
issue = "44489")]
3+
#![stable(feature = "core_panic_info", since = "1.41.0")]
64

75
use crate::any::Any;
86
use crate::fmt;

0 commit comments

Comments
 (0)