]> git.lizzy.rs Git - rust.git/blobdiff - library/core/src/option.rs
Hide the items while waiting for the ACP
[rust.git] / library / core / src / option.rs
index a81dbc6924fb737a3d9891bd7099f6f89ec7a24c..f284b43595576e837d3e3054e8959aa403d799ea 100644 (file)
@@ -1720,7 +1720,7 @@ impl<T, U> Option<(T, U)> {
     /// assert_eq!(y.unzip(), (None, None));
     /// ```
     #[inline]
-    #[stable(feature = "unzip_option", since = "CURRENT_RUSTC_VERSION")]
+    #[stable(feature = "unzip_option", since = "1.66.0")]
     #[rustc_const_unstable(feature = "const_option", issue = "67441")]
     pub const fn unzip(self) -> (Option<T>, Option<U>)
     where