@@ -1133,7 +1133,7 @@ impl<T> Option<T> {
11331133 /// ```
11341134 #[ inline]
11351135 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1136- #[ rustc_const_unstable( feature = "const_iter" , issue = "none " ) ]
1136+ #[ rustc_const_unstable( feature = "const_iter" , issue = "92476 " ) ]
11371137 pub const fn iter_mut ( & mut self ) -> IterMut < ' _ , T > {
11381138 IterMut { inner : Item { opt : self . as_mut ( ) } }
11391139 }
@@ -1859,7 +1859,7 @@ impl<T> const Default for Option<T> {
18591859}
18601860
18611861#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1862- #[ rustc_const_unstable( feature = "const_iter" , issue = "none " ) ]
1862+ #[ rustc_const_unstable( feature = "const_iter" , issue = "92476 " ) ]
18631863impl < T > const IntoIterator for Option < T > {
18641864 type Item = T ;
18651865 type IntoIter = IntoIter < T > ;
@@ -1884,7 +1884,7 @@ impl<T> const IntoIterator for Option<T> {
18841884}
18851885
18861886#[ stable( since = "1.4.0" , feature = "option_iter" ) ]
1887- #[ rustc_const_unstable( feature = "const_iter" , issue = "none " ) ]
1887+ #[ rustc_const_unstable( feature = "const_iter" , issue = "92476 " ) ]
18881888impl < ' a , T > const IntoIterator for & ' a Option < T > {
18891889 type Item = & ' a T ;
18901890 type IntoIter = Iter < ' a , T > ;
@@ -1895,7 +1895,7 @@ impl<'a, T> const IntoIterator for &'a Option<T> {
18951895}
18961896
18971897#[ stable( since = "1.4.0" , feature = "option_iter" ) ]
1898- #[ rustc_const_unstable( feature = "const_iter" , issue = "none " ) ]
1898+ #[ rustc_const_unstable( feature = "const_iter" , issue = "92476 " ) ]
18991899impl < ' a , T > const IntoIterator for & ' a mut Option < T > {
19001900 type Item = & ' a mut T ;
19011901 type IntoIter = IterMut < ' a , T > ;
@@ -2023,7 +2023,7 @@ pub struct Iter<'a, A: 'a> {
20232023}
20242024
20252025#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2026- #[ rustc_const_unstable( feature = "const_iter" , issue = "none " ) ]
2026+ #[ rustc_const_unstable( feature = "const_iter" , issue = "92476 " ) ]
20272027impl < ' a , A > const Iterator for Iter < ' a , A > {
20282028 type Item = & ' a A ;
20292029
@@ -2074,7 +2074,7 @@ pub struct IterMut<'a, A: 'a> {
20742074}
20752075
20762076#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2077- #[ rustc_const_unstable( feature = "const_iter" , issue = "none " ) ]
2077+ #[ rustc_const_unstable( feature = "const_iter" , issue = "92476 " ) ]
20782078impl < ' a , A > const Iterator for IterMut < ' a , A > {
20792079 type Item = & ' a mut A ;
20802080
@@ -2116,7 +2116,7 @@ pub struct IntoIter<A> {
21162116}
21172117
21182118#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2119- #[ rustc_const_unstable( feature = "const_iter" , issue = "none " ) ]
2119+ #[ rustc_const_unstable( feature = "const_iter" , issue = "92476 " ) ]
21202120impl < A > const Iterator for IntoIter < A > {
21212121 type Item = A ;
21222122
0 commit comments