Skip to content

Commit

Permalink
Stabilize the core::panic module
Browse files Browse the repository at this point in the history
`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
  • Loading branch information
SimonSapin committed Nov 26, 2019
1 parent 392e5a7 commit eab1dc9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/libcore/panic.rs
@@ -1,8 +1,6 @@
//! Panic support in the standard library.

#![unstable(feature = "core_panic_info",
reason = "newly available in libcore",
issue = "44489")]
#![stable(feature = "core_panic_info", since = "1.41.0")]

use crate::any::Any;
use crate::fmt;
Expand Down

0 comments on commit eab1dc9

Please sign in to comment.