diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs index 5b71d0b85a03e..f7c12b98f481e 100644 --- a/src/liballoc/rc.rs +++ b/src/liballoc/rc.rs @@ -620,13 +620,12 @@ impl Rc { impl Rc { #[inline] - #[unstable(feature = "rc_downcast", issue = "44608")] + #[stable(feature = "rc_downcast", since = "1.29.0")] /// Attempt to downcast the `Rc` to a concrete type. /// /// # Examples /// /// ``` - /// #![feature(rc_downcast)] /// use std::any::Any; /// use std::rc::Rc; /// diff --git a/src/liballoc/sync.rs b/src/liballoc/sync.rs index 6710878b31d94..5a738fc54441f 100644 --- a/src/liballoc/sync.rs +++ b/src/liballoc/sync.rs @@ -980,13 +980,12 @@ unsafe impl<#[may_dangle] T: ?Sized> Drop for Arc { impl Arc { #[inline] - #[unstable(feature = "rc_downcast", issue = "44608")] + #[stable(feature = "rc_downcast", since = "1.29.0")] /// Attempt to downcast the `Arc` to a concrete type. /// /// # Examples /// /// ``` - /// #![feature(rc_downcast)] /// use std::any::Any; /// use std::sync::Arc; ///