File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -620,13 +620,12 @@ impl<T: Clone> Rc<T> {
620
620
621
621
impl Rc < Any > {
622
622
#[ inline]
623
- #[ unstable ( feature = "rc_downcast" , issue = "44608 " ) ]
623
+ #[ stable ( feature = "rc_downcast" , since = "1.29.0 " ) ]
624
624
/// Attempt to downcast the `Rc<Any>` to a concrete type.
625
625
///
626
626
/// # Examples
627
627
///
628
628
/// ```
629
- /// #![feature(rc_downcast)]
630
629
/// use std::any::Any;
631
630
/// use std::rc::Rc;
632
631
///
Original file line number Diff line number Diff line change @@ -981,13 +981,12 @@ unsafe impl<#[may_dangle] T: ?Sized> Drop for Arc<T> {
981
981
982
982
impl Arc < Any + Send + Sync > {
983
983
#[ inline]
984
- #[ unstable ( feature = "rc_downcast" , issue = "44608 " ) ]
984
+ #[ stable ( feature = "rc_downcast" , since = "1.29.0 " ) ]
985
985
/// Attempt to downcast the `Arc<Any + Send + Sync>` to a concrete type.
986
986
///
987
987
/// # Examples
988
988
///
989
989
/// ```
990
- /// #![feature(rc_downcast)]
991
990
/// use std::any::Any;
992
991
/// use std::sync::Arc;
993
992
///
You can’t perform that action at this time.
0 commit comments