diff --git a/library/core/src/convert/mod.rs b/library/core/src/convert/mod.rs index daf9f4674f8..72dbe845c97 100644 --- a/library/core/src/convert/mod.rs +++ b/library/core/src/convert/mod.rs @@ -532,7 +532,7 @@ where // From implies Into #[stable(feature = "rust1", since = "1.0.0")] -#[rustc_const_unstable(feature = "const_convert", issue = "none")] +#[rustc_const_unstable(feature = "const_convert", issue = "88674")] impl const Into for T where U: ~const From, @@ -544,7 +544,7 @@ where // From (and thus Into) is reflexive #[stable(feature = "rust1", since = "1.0.0")] -#[rustc_const_unstable(feature = "const_convert", issue = "none")] +#[rustc_const_unstable(feature = "const_convert", issue = "88674")] impl const From for T { fn from(t: T) -> T { t diff --git a/library/core/src/option.rs b/library/core/src/option.rs index b61ab393bf9..d74771ef89a 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -2010,7 +2010,7 @@ impl> FromIterator> for Option { } #[unstable(feature = "try_trait_v2", issue = "84277")] -#[rustc_const_unstable(feature = "const_convert", issue = "none")] +#[rustc_const_unstable(feature = "const_convert", issue = "88674")] impl const ops::Try for Option { type Output = T; type Residual = Option; @@ -2030,7 +2030,7 @@ impl const ops::Try for Option { } #[unstable(feature = "try_trait_v2", issue = "84277")] -#[rustc_const_unstable(feature = "const_convert", issue = "none")] +#[rustc_const_unstable(feature = "const_convert", issue = "88674")] impl const ops::FromResidual for Option { #[inline] fn from_residual(residual: Option) -> Self { diff --git a/library/core/src/result.rs b/library/core/src/result.rs index f7bbf019210..6ed980cf53f 100644 --- a/library/core/src/result.rs +++ b/library/core/src/result.rs @@ -1889,7 +1889,7 @@ impl> FromIterator> for Result { } #[unstable(feature = "try_trait_v2", issue = "84277")] -#[rustc_const_unstable(feature = "const_convert", issue = "none")] +#[rustc_const_unstable(feature = "const_convert", issue = "88674")] impl const ops::Try for Result { type Output = T; type Residual = Result; @@ -1909,7 +1909,7 @@ impl const ops::Try for Result { } #[unstable(feature = "try_trait_v2", issue = "84277")] -#[rustc_const_unstable(feature = "const_convert", issue = "none")] +#[rustc_const_unstable(feature = "const_convert", issue = "88674")] impl> const ops::FromResidual> for Result { #[inline] fn from_residual(residual: Result) -> Self {