@@ -4192,7 +4192,7 @@ macro_rules! from_str_radix_int_impl {
41924192from_str_radix_int_impl ! { isize i8 i16 i32 i64 i128 usize u8 u16 u32 u64 u128 }
41934193
41944194/// The error type returned when a checked integral type conversion fails.
4195- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4195+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
41964196#[ derive( Debug , Copy , Clone ) ]
41974197pub struct TryFromIntError ( ( ) ) ;
41984198
@@ -4207,14 +4207,14 @@ impl TryFromIntError {
42074207 }
42084208}
42094209
4210- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4210+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
42114211impl fmt:: Display for TryFromIntError {
42124212 fn fmt ( & self , fmt : & mut fmt:: Formatter ) -> fmt:: Result {
42134213 self . __description ( ) . fmt ( fmt)
42144214 }
42154215}
42164216
4217- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4217+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
42184218impl From < !> for TryFromIntError {
42194219 fn from ( never : !) -> TryFromIntError {
42204220 never
@@ -4224,7 +4224,7 @@ impl From<!> for TryFromIntError {
42244224// only negative bounds
42254225macro_rules! try_from_lower_bounded {
42264226 ( $source: ty, $( $target: ty) ,* ) => { $(
4227- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4227+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
42284228 impl TryFrom <$source> for $target {
42294229 type Error = TryFromIntError ;
42304230
@@ -4243,7 +4243,7 @@ macro_rules! try_from_lower_bounded {
42434243// unsigned to signed (only positive bound)
42444244macro_rules! try_from_upper_bounded {
42454245 ( $source: ty, $( $target: ty) ,* ) => { $(
4246- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4246+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
42474247 impl TryFrom <$source> for $target {
42484248 type Error = TryFromIntError ;
42494249
@@ -4262,7 +4262,7 @@ macro_rules! try_from_upper_bounded {
42624262// all other cases
42634263macro_rules! try_from_both_bounded {
42644264 ( $source: ty, $( $target: ty) ,* ) => { $(
4265- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
4265+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
42664266 impl TryFrom <$source> for $target {
42674267 type Error = TryFromIntError ;
42684268
0 commit comments