From 74c8d984dbd73c070f9c9a5ac991cc271ff05164 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 12 Jul 2019 13:07:53 -0700 Subject: Add tracking issue 62633 --- src/libcore/option.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libcore') diff --git a/src/libcore/option.rs b/src/libcore/option.rs index 237994a83cf..f5581ecbba3 100644 --- a/src/libcore/option.rs +++ b/src/libcore/option.rs @@ -1008,7 +1008,7 @@ impl Option { /// } /// ``` #[inline] - #[unstable(feature = "option_expect_none", reason = "newly added", issue = "0")] + #[unstable(feature = "option_expect_none", reason = "newly added", issue = "62633")] pub fn expect_none(self, msg: &str) { if let Some(val) = self { expect_none_failed(msg, &val); @@ -1050,7 +1050,7 @@ impl Option { /// } /// ``` #[inline] - #[unstable(feature = "option_unwrap_none", reason = "newly added", issue = "0")] + #[unstable(feature = "option_unwrap_none", reason = "newly added", issue = "62633")] pub fn unwrap_none(self) { if let Some(val) = self { expect_none_failed("called `Option::unwrap_none()` on a `Some` value", &val); -- cgit 1.4.1-3-g733a5