@@ -723,7 +723,8 @@ impl<T> Option<T> {
723
723
/// ```
724
724
#[ inline]
725
725
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
726
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
726
+ #[ cfg_attr( bootstrap, rustc_allow_const_fn_unstable( const_mut_refs) ) ]
727
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
727
728
pub const fn as_mut ( & mut self ) -> Option < & mut T > {
728
729
match * self {
729
730
Some ( ref mut x) => Some ( x) ,
@@ -924,7 +925,8 @@ impl<T> Option<T> {
924
925
#[ track_caller]
925
926
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
926
927
#[ cfg_attr( not( test) , rustc_diagnostic_item = "option_expect" ) ]
927
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
928
+ #[ rustc_allow_const_fn_unstable( const_precise_live_drops) ]
929
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
928
930
pub const fn expect ( self , msg : & str ) -> T {
929
931
match self {
930
932
Some ( val) => val,
@@ -962,7 +964,8 @@ impl<T> Option<T> {
962
964
#[ track_caller]
963
965
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
964
966
#[ cfg_attr( not( test) , rustc_diagnostic_item = "option_unwrap" ) ]
965
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
967
+ #[ rustc_allow_const_fn_unstable( const_precise_live_drops) ]
968
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
966
969
pub const fn unwrap ( self ) -> T {
967
970
match self {
968
971
Some ( val) => val,
@@ -1069,7 +1072,8 @@ impl<T> Option<T> {
1069
1072
#[ inline]
1070
1073
#[ track_caller]
1071
1074
#[ stable( feature = "option_result_unwrap_unchecked" , since = "1.58.0" ) ]
1072
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
1075
+ #[ rustc_allow_const_fn_unstable( const_precise_live_drops) ]
1076
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
1073
1077
pub const unsafe fn unwrap_unchecked ( self ) -> T {
1074
1078
match self {
1075
1079
Some ( val) => val,
@@ -1712,7 +1716,9 @@ impl<T> Option<T> {
1712
1716
/// ```
1713
1717
#[ inline]
1714
1718
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1715
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
1719
+ #[ cfg_attr( bootstrap, rustc_allow_const_fn_unstable( const_mut_refs) ) ]
1720
+ #[ rustc_allow_const_fn_unstable( const_replace) ] // todo: drop if we don't get stable const_replace
1721
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
1716
1722
pub const fn take ( & mut self ) -> Option < T > {
1717
1723
// FIXME(const-hack) replace `mem::replace` by `mem::take` when the latter is const ready
1718
1724
mem:: replace ( self , None )
@@ -1769,8 +1775,10 @@ impl<T> Option<T> {
1769
1775
/// assert_eq!(old, None);
1770
1776
/// ```
1771
1777
#[ inline]
1772
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
1773
1778
#[ stable( feature = "option_replace" , since = "1.31.0" ) ]
1779
+ #[ cfg_attr( bootstrap, rustc_allow_const_fn_unstable( const_mut_refs) ) ]
1780
+ #[ rustc_allow_const_fn_unstable( const_replace) ] // todo: drop if we don't get stable const_replace
1781
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
1774
1782
pub const fn replace ( & mut self , value : T ) -> Option < T > {
1775
1783
mem:: replace ( self , Some ( value) )
1776
1784
}
@@ -1878,7 +1886,7 @@ impl<T> Option<&T> {
1878
1886
/// ```
1879
1887
#[ must_use = "`self` will be dropped if the result is not used" ]
1880
1888
#[ stable( feature = "copied" , since = "1.35.0" ) ]
1881
- #[ rustc_const_unstable ( feature = "const_option" , issue = "67441 " ) ]
1889
+ #[ rustc_const_stable ( feature = "const_option" , since = "CURRENT_RUSTC_VERSION " ) ]
1882
1890
pub const fn copied ( self ) -> Option < T >
1883
1891
where
1884
1892
T : Copy ,
@@ -1931,7 +1939,8 @@ impl<T> Option<&mut T> {
1931
1939
/// ```
1932
1940
#[ must_use = "`self` will be dropped if the result is not used" ]
1933
1941
#[ stable( feature = "copied" , since = "1.35.0" ) ]
1934
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
1942
+ #[ cfg_attr( bootstrap, rustc_allow_const_fn_unstable( const_mut_refs) ) ]
1943
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
1935
1944
pub const fn copied ( self ) -> Option < T >
1936
1945
where
1937
1946
T : Copy ,
@@ -1986,7 +1995,8 @@ impl<T, E> Option<Result<T, E>> {
1986
1995
/// ```
1987
1996
#[ inline]
1988
1997
#[ stable( feature = "transpose_result" , since = "1.33.0" ) ]
1989
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
1998
+ #[ rustc_allow_const_fn_unstable( const_precise_live_drops) ]
1999
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
1990
2000
pub const fn transpose ( self ) -> Result < Option < T > , E > {
1991
2001
match self {
1992
2002
Some ( Ok ( x) ) => Ok ( Some ( x) ) ,
@@ -2009,7 +2019,6 @@ const fn unwrap_failed() -> ! {
2009
2019
#[ cfg_attr( feature = "panic_immediate_abort" , inline) ]
2010
2020
#[ cold]
2011
2021
#[ track_caller]
2012
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
2013
2022
const fn expect_failed ( msg : & str ) -> ! {
2014
2023
panic_display ( & msg)
2015
2024
}
@@ -2534,7 +2543,8 @@ impl<T> Option<Option<T>> {
2534
2543
/// ```
2535
2544
#[ inline]
2536
2545
#[ stable( feature = "option_flattening" , since = "1.40.0" ) ]
2537
- #[ rustc_const_unstable( feature = "const_option" , issue = "67441" ) ]
2546
+ #[ rustc_allow_const_fn_unstable( const_precise_live_drops) ]
2547
+ #[ rustc_const_stable( feature = "const_option" , since = "CURRENT_RUSTC_VERSION" ) ]
2538
2548
pub const fn flatten ( self ) -> Option < T > {
2539
2549
// FIXME(const-hack): could be written with `and_then`
2540
2550
match self {
0 commit comments