@@ -3647,7 +3647,7 @@ macro_rules! from_str_radix_int_impl {
36473647from_str_radix_int_impl ! { isize i8 i16 i32 i64 i128 usize u8 u16 u32 u64 u128 }
36483648
36493649/// The error type returned when a checked integral type conversion fails.
3650- #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
3650+ #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
36513651#[ derive( Debug , Copy , Clone ) ]
36523652pub struct TryFromIntError ( ( ) ) ;
36533653
@@ -3662,14 +3662,14 @@ impl TryFromIntError {
36623662 }
36633663}
36643664
3665- #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
3665+ #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
36663666impl fmt:: Display for TryFromIntError {
36673667 fn fmt ( & self , fmt : & mut fmt:: Formatter ) -> fmt:: Result {
36683668 self . __description ( ) . fmt ( fmt)
36693669 }
36703670}
36713671
3672- #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
3672+ #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
36733673impl From < !> for TryFromIntError {
36743674 fn from ( never : !) -> TryFromIntError {
36753675 never
@@ -3679,7 +3679,7 @@ impl From<!> for TryFromIntError {
36793679// no possible bounds violation
36803680macro_rules! try_from_unbounded {
36813681 ( $source: ty, $( $target: ty) ,* ) => { $(
3682- #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
3682+ #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
36833683 impl TryFrom <$source> for $target {
36843684 type Error = TryFromIntError ;
36853685
@@ -3694,7 +3694,7 @@ macro_rules! try_from_unbounded {
36943694// only negative bounds
36953695macro_rules! try_from_lower_bounded {
36963696 ( $source: ty, $( $target: ty) ,* ) => { $(
3697- #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
3697+ #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
36983698 impl TryFrom <$source> for $target {
36993699 type Error = TryFromIntError ;
37003700
@@ -3713,7 +3713,7 @@ macro_rules! try_from_lower_bounded {
37133713// unsigned to signed (only positive bound)
37143714macro_rules! try_from_upper_bounded {
37153715 ( $source: ty, $( $target: ty) ,* ) => { $(
3716- #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
3716+ #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
37173717 impl TryFrom <$source> for $target {
37183718 type Error = TryFromIntError ;
37193719
@@ -3732,7 +3732,7 @@ macro_rules! try_from_upper_bounded {
37323732// all other cases
37333733macro_rules! try_from_both_bounded {
37343734 ( $source: ty, $( $target: ty) ,* ) => { $(
3735- #[ unstable ( feature = "try_from" , issue = "33417 " ) ]
3735+ #[ stable ( feature = "try_from" , since = "1.26.0 " ) ]
37363736 impl TryFrom <$source> for $target {
37373737 type Error = TryFromIntError ;
37383738
0 commit comments