about summary refs log tree commit diff
diff options
context:
space:
mode:
authormbartlett21 <29034492+mbartlett21@users.noreply.github.com>2021-12-06 15:26:32 +1000
committerGitHub <noreply@github.com>2021-12-06 15:26:32 +1000
commit9eb7c34f9b4fe388abfb2370ffbdff4e11df3136 (patch)
treedfc0796388430d84bf99af3b15aba04ca777ac9f
parent8b81937f9a98e413518829ca7793f341e22c2be1 (diff)
downloadrust-9eb7c34f9b4fe388abfb2370ffbdff4e11df3136.tar.gz
rust-9eb7c34f9b4fe388abfb2370ffbdff4e11df3136.zip
Add tracking issue number
-rw-r--r--library/core/src/option.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/option.rs b/library/core/src/option.rs
index dd36e95323e..3530bf36721 100644
--- a/library/core/src/option.rs
+++ b/library/core/src/option.rs
@@ -1497,7 +1497,7 @@ impl<T: Clone> Option<&T> {
     /// ```
     #[must_use = "`self` will be dropped if the result is not used"]
     #[stable(feature = "rust1", since = "1.0.0")]
-    #[rustc_const_unstable(feature = "const_option_cloned", issue = "none")]
+    #[rustc_const_unstable(feature = "const_option_cloned", issue = "91582")]
     pub const fn cloned(self) -> Option<T>
     where
         T: ~const Clone,
@@ -1524,7 +1524,7 @@ impl<T: Clone> Option<&mut T> {
     /// ```
     #[must_use = "`self` will be dropped if the result is not used"]
     #[stable(since = "1.26.0", feature = "option_ref_mut_cloned")]
-    #[rustc_const_unstable(feature = "const_option_cloned", issue = "none")]
+    #[rustc_const_unstable(feature = "const_option_cloned", issue = "91582")]
     pub const fn cloned(self) -> Option<T>
     where
         T: ~const Clone,