about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/std/src/io/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs
index 811688175e0..ff7fdcae16f 100644
--- a/library/std/src/io/error.rs
+++ b/library/std/src/io/error.rs
@@ -836,7 +836,7 @@ impl Error {
     ///     }
     /// }
     /// ```
-    #[unstable(feature = "io_error_downcast", issue = "none")]
+    #[unstable(feature = "io_error_downcast", issue = "99262")]
     pub fn downcast<E>(self) -> result::Result<Box<E>, Self>
     where
         E: error::Error + Send + Sync + 'static,