about summary refs log tree commit diff
path: root/library/std/src/panic.rs
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2024-07-21 08:55:06 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2024-07-28 14:46:29 -0400
commite8644f85b8b44285e3d74dfa64362e58072e4683 (patch)
tree0a96226a19e93638359f4a6f0c78fc1af4b89b34 /library/std/src/panic.rs
parent78c857394ec8c01f06cb1df260c51178180a40e5 (diff)
downloadrust-e8644f85b8b44285e3d74dfa64362e58072e4683.tar.gz
rust-e8644f85b8b44285e3d74dfa64362e58072e4683.zip
Update CURRENT_RUSTC_VERSION
Diffstat (limited to 'library/std/src/panic.rs')
-rw-r--r--library/std/src/panic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/panic.rs b/library/std/src/panic.rs
index c5d1a893ee8..e024ac2816a 100644
--- a/library/std/src/panic.rs
+++ b/library/std/src/panic.rs
@@ -39,7 +39,7 @@ pub type PanicInfo<'a> = PanicHookInfo<'a>;
 /// ```
 ///
 /// [`set_hook`]: ../../std/panic/fn.set_hook.html
-#[stable(feature = "panic_hook_info", since = "CURRENT_RUSTC_VERSION")]
+#[stable(feature = "panic_hook_info", since = "1.81.0")]
 #[derive(Debug)]
 pub struct PanicHookInfo<'a> {
     payload: &'a (dyn Any + Send),