Skip to content

Commit df8a62d

Browse files
authored
Use CURRENT_RUSTC_VERSION
1 parent 59be3e8 commit df8a62d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,7 @@ impl<T, U> Option<(T, U)> {
17181718
/// assert_eq!(y.unzip(), (None, None));
17191719
/// ```
17201720
#[inline]
1721-
#[stable(feature = "unzip_option", since = "1.63.0")]
1721+
#[stable(feature = "unzip_option", since = "CURRENT_RUSTC_VERSION")]
17221722
#[rustc_const_unstable(feature = "const_option", issue = "67441")]
17231723
pub const fn unzip(self) -> (Option<T>, Option<U>)
17241724
where

0 commit comments

Comments
 (0)