@@ -285,7 +285,7 @@ impl dyn Any {
285
285
///
286
286
/// The contained value must be of type `T`. Calling this method
287
287
/// with the incorrect type is *undefined behavior*.
288
- #[ unstable( feature = "downcast_unchecked" , issue = "none " ) ]
288
+ #[ unstable( feature = "downcast_unchecked" , issue = "90850 " ) ]
289
289
#[ inline]
290
290
pub unsafe fn downcast_ref_unchecked < T : Any > ( & self ) -> & T {
291
291
debug_assert ! ( self . is:: <T >( ) ) ;
@@ -317,7 +317,7 @@ impl dyn Any {
317
317
///
318
318
/// The contained value must be of type `T`. Calling this method
319
319
/// with the incorrect type is *undefined behavior*.
320
- #[ unstable( feature = "downcast_unchecked" , issue = "none " ) ]
320
+ #[ unstable( feature = "downcast_unchecked" , issue = "90850 " ) ]
321
321
#[ inline]
322
322
pub unsafe fn downcast_mut_unchecked < T : Any > ( & mut self ) -> & mut T {
323
323
debug_assert ! ( self . is:: <T >( ) ) ;
@@ -422,7 +422,7 @@ impl dyn Any + Send {
422
422
/// # Safety
423
423
///
424
424
/// Same as the method on the type `dyn Any`.
425
- #[ unstable( feature = "downcast_unchecked" , issue = "none " ) ]
425
+ #[ unstable( feature = "downcast_unchecked" , issue = "90850 " ) ]
426
426
#[ inline]
427
427
pub unsafe fn downcast_ref_unchecked < T : Any > ( & self ) -> & T {
428
428
// SAFETY: guaranteed by caller
@@ -450,7 +450,7 @@ impl dyn Any + Send {
450
450
/// # Safety
451
451
///
452
452
/// Same as the method on the type `dyn Any`.
453
- #[ unstable( feature = "downcast_unchecked" , issue = "none " ) ]
453
+ #[ unstable( feature = "downcast_unchecked" , issue = "90850 " ) ]
454
454
#[ inline]
455
455
pub unsafe fn downcast_mut_unchecked < T : Any > ( & mut self ) -> & mut T {
456
456
// SAFETY: guaranteed by caller
@@ -550,7 +550,7 @@ impl dyn Any + Send + Sync {
550
550
/// assert_eq!(*x.downcast_ref_unchecked::<usize>(), 1);
551
551
/// }
552
552
/// ```
553
- #[ unstable( feature = "downcast_unchecked" , issue = "none " ) ]
553
+ #[ unstable( feature = "downcast_unchecked" , issue = "90850 " ) ]
554
554
#[ inline]
555
555
pub unsafe fn downcast_ref_unchecked < T : Any > ( & self ) -> & T {
556
556
// SAFETY: guaranteed by caller
@@ -574,7 +574,7 @@ impl dyn Any + Send + Sync {
574
574
///
575
575
/// assert_eq!(*x.downcast_ref::<usize>().unwrap(), 2);
576
576
/// ```
577
- #[ unstable( feature = "downcast_unchecked" , issue = "none " ) ]
577
+ #[ unstable( feature = "downcast_unchecked" , issue = "90850 " ) ]
578
578
#[ inline]
579
579
pub unsafe fn downcast_mut_unchecked < T : Any > ( & mut self ) -> & mut T {
580
580
// SAFETY: guaranteed by caller
0 commit comments