diff --git a/library/core/src/option.rs b/library/core/src/option.rs index da2cb3a2b7822..265f056dc8766 100644 --- a/library/core/src/option.rs +++ b/library/core/src/option.rs @@ -1067,7 +1067,7 @@ impl Option { #[inline] #[track_caller] #[stable(feature = "option_result_unwrap_unchecked", since = "1.58.0")] - #[rustc_const_unstable(feature = "const_option_ext", issue = "91930")] + #[rustc_const_unstable(feature = "const_option", issue = "67441")] pub const unsafe fn unwrap_unchecked(self) -> T { match self { Some(val) => val,