summary refs log tree commit diff
path: root/library/alloc/src
diff options
context:
space:
mode:
authorIbraheem Ahmed <ibrah1440@gmail.com>2021-11-12 22:55:11 -0500
committerIbraheem Ahmed <ibrah1440@gmail.com>2021-11-12 22:55:11 -0500
commit6f982930ba2da1ee99c3c4378179bcfe6f615db6 (patch)
treed6fe0919795a0a765e114b7b3765786127f1804b /library/alloc/src
parent29403eeef0b175b4a65cc3c7865708ee15d8a7e8 (diff)
downloadrust-6f982930ba2da1ee99c3c4378179bcfe6f615db6.tar.gz
rust-6f982930ba2da1ee99c3c4378179bcfe6f615db6.zip
add tracking issue for `downcast_unchecked`
Diffstat (limited to 'library/alloc/src')
-rw-r--r--library/alloc/src/boxed.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/alloc/src/boxed.rs b/library/alloc/src/boxed.rs
index 81ac37a306b..1e2c1b2eee6 100644
--- a/library/alloc/src/boxed.rs
+++ b/library/alloc/src/boxed.rs
@@ -1528,7 +1528,7 @@ impl<A: Allocator> Box<dyn Any, A> {
     /// The contained value must be of type `T`. Calling this method
     /// with the incorrect type is *undefined behavior*.
     #[inline]
-    #[unstable(feature = "downcast_unchecked", issue = "none")]
+    #[unstable(feature = "downcast_unchecked", issue = "90850")]
     pub unsafe fn downcast_unchecked<T: Any>(self) -> Box<T, A> {
         debug_assert!(self.is::<T>());
         unsafe {
@@ -1585,7 +1585,7 @@ impl<A: Allocator> Box<dyn Any + Send, A> {
     /// The contained value must be of type `T`. Calling this method
     /// with the incorrect type is *undefined behavior*.
     #[inline]
-    #[unstable(feature = "downcast_unchecked", issue = "none")]
+    #[unstable(feature = "downcast_unchecked", issue = "90850")]
     pub unsafe fn downcast_unchecked<T: Any>(self) -> Box<T, A> {
         debug_assert!(self.is::<T>());
         unsafe {
@@ -1642,7 +1642,7 @@ impl<A: Allocator> Box<dyn Any + Send + Sync, A> {
     /// The contained value must be of type `T`. Calling this method
     /// with the incorrect type is *undefined behavior*.
     #[inline]
-    #[unstable(feature = "downcast_unchecked", issue = "none")]
+    #[unstable(feature = "downcast_unchecked", issue = "90850")]
     pub unsafe fn downcast_unchecked<T: Any>(self) -> Box<T, A> {
         debug_assert!(self.is::<T>());
         unsafe {