Skip to content

Commit ff1ecc0

Browse files
committed
Add tracking issue
1 parent 92b57c0 commit ff1ecc0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: library/core/src/convert/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ where
532532

533533
// From implies Into
534534
#[stable(feature = "rust1", since = "1.0.0")]
535-
#[rustc_const_unstable(feature = "const_convert", issue = "none")]
535+
#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
536536
impl<T, U> const Into<U> for T
537537
where
538538
U: ~const From<T>,
@@ -544,7 +544,7 @@ where
544544

545545
// From (and thus Into) is reflexive
546546
#[stable(feature = "rust1", since = "1.0.0")]
547-
#[rustc_const_unstable(feature = "const_convert", issue = "none")]
547+
#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
548548
impl<T> const From<T> for T {
549549
fn from(t: T) -> T {
550550
t

Diff for: library/core/src/option.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2010,7 +2010,7 @@ impl<A, V: FromIterator<A>> FromIterator<Option<A>> for Option<V> {
20102010
}
20112011

20122012
#[unstable(feature = "try_trait_v2", issue = "84277")]
2013-
#[rustc_const_unstable(feature = "const_convert", issue = "none")]
2013+
#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
20142014
impl<T> const ops::Try for Option<T> {
20152015
type Output = T;
20162016
type Residual = Option<convert::Infallible>;
@@ -2030,7 +2030,7 @@ impl<T> const ops::Try for Option<T> {
20302030
}
20312031

20322032
#[unstable(feature = "try_trait_v2", issue = "84277")]
2033-
#[rustc_const_unstable(feature = "const_convert", issue = "none")]
2033+
#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
20342034
impl<T> const ops::FromResidual for Option<T> {
20352035
#[inline]
20362036
fn from_residual(residual: Option<convert::Infallible>) -> Self {

Diff for: library/core/src/result.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1889,7 +1889,7 @@ impl<A, E, V: FromIterator<A>> FromIterator<Result<A, E>> for Result<V, E> {
18891889
}
18901890

18911891
#[unstable(feature = "try_trait_v2", issue = "84277")]
1892-
#[rustc_const_unstable(feature = "const_convert", issue = "none")]
1892+
#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
18931893
impl<T, E> const ops::Try for Result<T, E> {
18941894
type Output = T;
18951895
type Residual = Result<convert::Infallible, E>;
@@ -1909,7 +1909,7 @@ impl<T, E> const ops::Try for Result<T, E> {
19091909
}
19101910

19111911
#[unstable(feature = "try_trait_v2", issue = "84277")]
1912-
#[rustc_const_unstable(feature = "const_convert", issue = "none")]
1912+
#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
19131913
impl<T, E, F: ~const From<E>> const ops::FromResidual<Result<convert::Infallible, E>> for Result<T, F> {
19141914
#[inline]
19151915
fn from_residual(residual: Result<convert::Infallible, E>) -> Self {

0 commit comments

Comments
 (0)