Skip to content

Commit 9eb7c34

Browse files
authored
Add tracking issue number
1 parent 8b81937 commit 9eb7c34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/option.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1497,7 +1497,7 @@ impl<T: Clone> Option<&T> {
14971497
/// ```
14981498
#[must_use = "`self` will be dropped if the result is not used"]
14991499
#[stable(feature = "rust1", since = "1.0.0")]
1500-
#[rustc_const_unstable(feature = "const_option_cloned", issue = "none")]
1500+
#[rustc_const_unstable(feature = "const_option_cloned", issue = "91582")]
15011501
pub const fn cloned(self) -> Option<T>
15021502
where
15031503
T: ~const Clone,
@@ -1524,7 +1524,7 @@ impl<T: Clone> Option<&mut T> {
15241524
/// ```
15251525
#[must_use = "`self` will be dropped if the result is not used"]
15261526
#[stable(since = "1.26.0", feature = "option_ref_mut_cloned")]
1527-
#[rustc_const_unstable(feature = "const_option_cloned", issue = "none")]
1527+
#[rustc_const_unstable(feature = "const_option_cloned", issue = "91582")]
15281528
pub const fn cloned(self) -> Option<T>
15291529
where
15301530
T: ~const Clone,

0 commit comments

Comments
 (0)