Skip to content

Commit

Permalink
Use CURRENT_RUSTC_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
Kixiron committed Sep 7, 2022
1 parent 59be3e8 commit df8a62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/option.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,7 @@ impl<T, U> Option<(T, U)> {
/// assert_eq!(y.unzip(), (None, None));
/// ```
#[inline]
#[stable(feature = "unzip_option", since = "1.63.0")]
#[stable(feature = "unzip_option", since = "CURRENT_RUSTC_VERSION")]
#[rustc_const_unstable(feature = "const_option", issue = "67441")]
pub const fn unzip(self) -> (Option<T>, Option<U>)
where
Expand Down

0 comments on commit df8a62d

Please sign in to comment.