File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -950,7 +950,7 @@ impl<T: ?Sized> Rc<T> {
950
950
/// let weak_five: &Weak<i32> = Rc::as_weak(five);
951
951
/// ```
952
952
#[ inline]
953
- #[ unstable( feature = "rc_as_weak" , issue = "none " ) ]
953
+ #[ unstable( feature = "rc_as_weak" , issue = "100472 " ) ]
954
954
#[ must_use]
955
955
pub const fn as_weak < ' a > ( this : & ' a Self ) -> & ' a Weak < T > {
956
956
unsafe { mem:: transmute :: < & ' a Rc < T > , & ' a Weak < T > > ( this) }
Original file line number Diff line number Diff line change @@ -977,7 +977,7 @@ impl<T: ?Sized> Arc<T> {
977
977
/// let weak_five: &Weak<i32> = Arc::as_weak(five);
978
978
/// ```
979
979
#[ inline]
980
- #[ unstable( feature = "rc_as_weak" , issue = "none " ) ]
980
+ #[ unstable( feature = "rc_as_weak" , issue = "100472 " ) ]
981
981
#[ must_use]
982
982
pub const fn as_weak < ' a > ( this : & ' a Self ) -> & ' a Weak < T > {
983
983
unsafe { mem:: transmute :: < & ' a Arc < T > , & ' a Weak < T > > ( this) }
You can’t perform that action at this time.
0 commit comments