From: Ulrik Sverdrup Date: Fri, 15 Sep 2017 17:16:22 +0000 (+0200) Subject: alloc: Add tracking issue for rc_downcast X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=3a39d95330623d47bcfcd5cac2d6b3c30e12ae5a;p=rust.git alloc: Add tracking issue for rc_downcast --- diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs index 814be059da7..58c589697f4 100644 --- a/src/liballoc/rc.rs +++ b/src/liballoc/rc.rs @@ -611,7 +611,7 @@ pub fn make_mut(this: &mut Self) -> &mut T { impl Rc { #[inline] - #[unstable(feature = "rc_downcast", issue = "0")] + #[unstable(feature = "rc_downcast", issue = "44608")] /// Attempt to downcast the `Rc` to a concrete type. /// /// # Examples