@@ -293,14 +293,13 @@ macro_rules! uint_impl {
293293 /// # Examples
294294 ///
295295 /// ```
296- /// #![feature(int_lowest_highest_one)]
297- ///
298296 #[ doc = concat!( "assert_eq!(0b0_" , stringify!( $SelfT) , ".highest_one(), None);" ) ]
299297 #[ doc = concat!( "assert_eq!(0b1_" , stringify!( $SelfT) , ".highest_one(), Some(0));" ) ]
300298 #[ doc = concat!( "assert_eq!(0b1_0000_" , stringify!( $SelfT) , ".highest_one(), Some(4));" ) ]
301299 #[ doc = concat!( "assert_eq!(0b1_1111_" , stringify!( $SelfT) , ".highest_one(), Some(4));" ) ]
302300 /// ```
303- #[ unstable( feature = "int_lowest_highest_one" , issue = "145203" ) ]
301+ #[ stable( feature = "int_lowest_highest_one" , since = "CURRENT_RUSTC_VERSION" ) ]
302+ #[ rustc_const_stable( feature = "int_lowest_highest_one" , since = "CURRENT_RUSTC_VERSION" ) ]
304303 #[ must_use = "this returns the result of the operation, \
305304 without modifying the original"]
306305 #[ inline( always) ]
@@ -317,14 +316,13 @@ macro_rules! uint_impl {
317316 /// # Examples
318317 ///
319318 /// ```
320- /// #![feature(int_lowest_highest_one)]
321- ///
322319 #[ doc = concat!( "assert_eq!(0b0_" , stringify!( $SelfT) , ".lowest_one(), None);" ) ]
323320 #[ doc = concat!( "assert_eq!(0b1_" , stringify!( $SelfT) , ".lowest_one(), Some(0));" ) ]
324321 #[ doc = concat!( "assert_eq!(0b1_0000_" , stringify!( $SelfT) , ".lowest_one(), Some(4));" ) ]
325322 #[ doc = concat!( "assert_eq!(0b1_1111_" , stringify!( $SelfT) , ".lowest_one(), Some(0));" ) ]
326323 /// ```
327- #[ unstable( feature = "int_lowest_highest_one" , issue = "145203" ) ]
324+ #[ stable( feature = "int_lowest_highest_one" , since = "CURRENT_RUSTC_VERSION" ) ]
325+ #[ rustc_const_stable( feature = "int_lowest_highest_one" , since = "CURRENT_RUSTC_VERSION" ) ]
328326 #[ must_use = "this returns the result of the operation, \
329327 without modifying the original"]
330328 #[ inline( always) ]
0 commit comments