From 392e5a7150d0a7c0098631d92791a26013ba28cd Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 26 Nov 2019 10:19:09 +0100 Subject: [PATCH] Fix the tracking issue number for `PanicInfo::message` #44489 was closed when the `#[panic_handler]` attribute was stabilized. --- src/libcore/panic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/panic.rs b/src/libcore/panic.rs index b61877ab070..aa81a7d402d 100644 --- a/src/libcore/panic.rs +++ b/src/libcore/panic.rs @@ -94,7 +94,7 @@ impl<'a> PanicInfo<'a> { /// returns that message ready to be used for example with [`fmt::write`] /// /// [`fmt::write`]: ../fmt/fn.write.html - #[unstable(feature = "panic_info_message", issue = "44489")] + #[unstable(feature = "panic_info_message", issue = "66745")] pub fn message(&self) -> Option<&fmt::Arguments<'_>> { self.message }