Fix the tracking issue number for PanicInfo::message

#44489 was closed when the `#[panic_handler]` attribute was stabilized.
This commit is contained in:
Simon Sapin 2019-11-26 10:19:09 +01:00
parent 6ddcf5044b
commit 392e5a7150

View File

@ -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
}