]> git.lizzy.rs Git - rust.git/blobdiff - library/core/src/result.rs
Rollup merge of #82372 - RalfJung:unsafe-cell, r=KodrAus
[rust.git] / library / core / src / result.rs
index 9cfa7b6211a192337ff553bc95d964e62e44d17d..d8747f8b8d6dcb4900af1f98325333cc47cf8586 100644 (file)
@@ -1302,7 +1302,7 @@ impl<T> Result<T, T> {
     /// assert_eq!(err.into_ok_or_err(), 4);
     /// ```
     #[inline]
-    #[unstable(feature = "result_into_ok_or_err", reason = "newly added", issue = "none")]
+    #[unstable(feature = "result_into_ok_or_err", reason = "newly added", issue = "82223")]
     pub const fn into_ok_or_err(self) -> T {
         match self {
             Ok(v) => v,