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(self) -> result::Result, Self> where E: error::Error + Send + Sync + 'static,