@@ -3663,7 +3663,7 @@ macro_rules! from_str_radix_int_impl {
36633663from_str_radix_int_impl ! { isize i8 i16 i32 i64 i128 usize u8 u16 u32 u64 u128 }
36643664
36653665/// The error type returned when a checked integral type conversion fails.
3666- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
3666+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
36673667#[ derive( Debug , Copy , Clone ) ]
36683668pub struct TryFromIntError ( ( ) ) ;
36693669
@@ -3678,14 +3678,14 @@ impl TryFromIntError {
36783678 }
36793679}
36803680
3681- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
3681+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
36823682impl fmt:: Display for TryFromIntError {
36833683 fn fmt ( & self , fmt : & mut fmt:: Formatter ) -> fmt:: Result {
36843684 self . __description ( ) . fmt ( fmt)
36853685 }
36863686}
36873687
3688- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
3688+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
36893689impl From < !> for TryFromIntError {
36903690 fn from ( never : !) -> TryFromIntError {
36913691 never
@@ -3695,7 +3695,7 @@ impl From<!> for TryFromIntError {
36953695// only negative bounds
36963696macro_rules! try_from_lower_bounded {
36973697 ( $source: ty, $( $target: ty) ,* ) => { $(
3698- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
3698+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
36993699 impl TryFrom <$source> for $target {
37003700 type Error = TryFromIntError ;
37013701
@@ -3714,7 +3714,7 @@ macro_rules! try_from_lower_bounded {
37143714// unsigned to signed (only positive bound)
37153715macro_rules! try_from_upper_bounded {
37163716 ( $source: ty, $( $target: ty) ,* ) => { $(
3717- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
3717+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
37183718 impl TryFrom <$source> for $target {
37193719 type Error = TryFromIntError ;
37203720
@@ -3733,7 +3733,7 @@ macro_rules! try_from_upper_bounded {
37333733// all other cases
37343734macro_rules! try_from_both_bounded {
37353735 ( $source: ty, $( $target: ty) ,* ) => { $(
3736- #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
3736+ #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
37373737 impl TryFrom <$source> for $target {
37383738 type Error = TryFromIntError ;
37393739
0 commit comments