@@ -1133,7 +1133,7 @@ impl<T> Option<T> {
1133
1133
/// ```
1134
1134
#[ inline]
1135
1135
#[ 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 " ) ]
1137
1137
pub const fn iter_mut ( & mut self ) -> IterMut < ' _ , T > {
1138
1138
IterMut { inner : Item { opt : self . as_mut ( ) } }
1139
1139
}
@@ -1859,7 +1859,7 @@ impl<T> const Default for Option<T> {
1859
1859
}
1860
1860
1861
1861
#[ 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 " ) ]
1863
1863
impl < T > const IntoIterator for Option < T > {
1864
1864
type Item = T ;
1865
1865
type IntoIter = IntoIter < T > ;
@@ -1884,7 +1884,7 @@ impl<T> const IntoIterator for Option<T> {
1884
1884
}
1885
1885
1886
1886
#[ 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 " ) ]
1888
1888
impl < ' a , T > const IntoIterator for & ' a Option < T > {
1889
1889
type Item = & ' a T ;
1890
1890
type IntoIter = Iter < ' a , T > ;
@@ -1895,7 +1895,7 @@ impl<'a, T> const IntoIterator for &'a Option<T> {
1895
1895
}
1896
1896
1897
1897
#[ 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 " ) ]
1899
1899
impl < ' a , T > const IntoIterator for & ' a mut Option < T > {
1900
1900
type Item = & ' a mut T ;
1901
1901
type IntoIter = IterMut < ' a , T > ;
@@ -2023,7 +2023,7 @@ pub struct Iter<'a, A: 'a> {
2023
2023
}
2024
2024
2025
2025
#[ 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 " ) ]
2027
2027
impl < ' a , A > const Iterator for Iter < ' a , A > {
2028
2028
type Item = & ' a A ;
2029
2029
@@ -2074,7 +2074,7 @@ pub struct IterMut<'a, A: 'a> {
2074
2074
}
2075
2075
2076
2076
#[ 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 " ) ]
2078
2078
impl < ' a , A > const Iterator for IterMut < ' a , A > {
2079
2079
type Item = & ' a mut A ;
2080
2080
@@ -2116,7 +2116,7 @@ pub struct IntoIter<A> {
2116
2116
}
2117
2117
2118
2118
#[ 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 " ) ]
2120
2120
impl < A > const Iterator for IntoIter < A > {
2121
2121
type Item = A ;
2122
2122
0 commit comments