diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2019-11-26 10:19:09 +0100 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2019-11-26 10:46:51 +0100 |
| commit | 392e5a7150d0a7c0098631d92791a26013ba28cd (patch) | |
| tree | 5263b38a04ecfed929dd06560ccdf056103cca17 /src/libcore | |
| parent | 6ddcf5044b64a03fc8fc422cdfa9946abd42c8f0 (diff) | |
| download | rust-392e5a7150d0a7c0098631d92791a26013ba28cd.tar.gz rust-392e5a7150d0a7c0098631d92791a26013ba28cd.zip | |
Fix the tracking issue number for `PanicInfo::message`
#44489 was closed when the `#[panic_handler]` attribute was stabilized.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/panic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |
