X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=library%2Fcore%2Fsrc%2Foption.rs;h=f284b43595576e837d3e3054e8959aa403d799ea;hb=71bb200225f0164940acc21f1fb647c8155f1706;hp=a81dbc6924fb737a3d9891bd7099f6f89ec7a24c;hpb=9f603feaeeb8f48c80fedc0128a55d0fff23a718;p=rust.git diff --git a/library/core/src/option.rs b/library/core/src/option.rs index a81dbc6924f..f284b435955 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -1720,7 +1720,7 @@ impl 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, Option) where