diff --git a/library/core/src/convert/num.rs b/library/core/src/convert/num.rs index b80980219b1e..673245056e79 100644 --- a/library/core/src/convert/num.rs +++ b/library/core/src/convert/num.rs @@ -330,7 +330,7 @@ fn try_from(u: $source) -> Result { /// Implement `TryFrom` for `bool` macro_rules! impl_try_from_integer_for_bool { ($($int:ty)+) => {$( - #[stable(feature = "try_from", since = "1.34.0")] + #[stable(feature = "bool_try_from_int", since = "1.95.0")] #[rustc_const_unstable(feature = "const_convert", issue = "143773")] impl const TryFrom<$int> for bool { type Error = TryFromIntError;