We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2711b01 commit 404da0bCopy full SHA for 404da0b
library/core/src/result.rs
@@ -1302,7 +1302,7 @@ impl<T> Result<T, T> {
1302
/// assert_eq!(err.into_ok_or_err(), 4);
1303
/// ```
1304
#[inline]
1305
- #[unstable(feature = "result_into_ok_or_err", reason = "newly added", issue = "none")]
+ #[unstable(feature = "result_into_ok_or_err", reason = "newly added", issue = "82223")]
1306
pub const fn into_ok_or_err(self) -> T {
1307
match self {
1308
Ok(v) => v,
0 commit comments