Apply suggestions from code review · rust-lang/rust@8e8a3be (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 8e8a3be

Apply suggestions from code review

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -836,7 +836,7 @@ impl Error {
836 836 /// }
837 837 /// }
838 838 /// ```
839 - #[unstable(feature = "io_error_downcast", issue = "none")]
839 + #[unstable(feature = "io_error_downcast", issue = "99262")]
840 840 pub fn downcast<E>(self) -> result::Result<Box<E>, Self>
841 841 where
842 842 E: error::Error + Send + Sync + 'static,