@@ -253,14 +253,13 @@ macro_rules! uint_impl {
253253 /// # Examples
254254 ///
255255 /// ```
256- /// #![feature(isolate_most_least_significant_one)]
257- ///
258256 #[ doc = concat!( "let n: " , stringify!( $SelfT) , " = 0b_01100100;" ) ]
259257 ///
260258 /// assert_eq!(n.isolate_highest_one(), 0b_01000000);
261259 #[ doc = concat!( "assert_eq!(0_" , stringify!( $SelfT) , ".isolate_highest_one(), 0);" ) ]
262260 /// ```
263- #[ unstable( feature = "isolate_most_least_significant_one" , issue = "136909" ) ]
261+ #[ stable( feature = "isolate_most_least_significant_one" , since = "CURRENT_RUSTC_VERSION" ) ]
262+ #[ rustc_const_stable( feature = "isolate_most_least_significant_one" , since = "CURRENT_RUSTC_VERSION" ) ]
264263 #[ must_use = "this returns the result of the operation, \
265264 without modifying the original"]
266265 #[ inline( always) ]
@@ -274,14 +273,13 @@ macro_rules! uint_impl {
274273 /// # Examples
275274 ///
276275 /// ```
277- /// #![feature(isolate_most_least_significant_one)]
278- ///
279276 #[ doc = concat!( "let n: " , stringify!( $SelfT) , " = 0b_01100100;" ) ]
280277 ///
281278 /// assert_eq!(n.isolate_lowest_one(), 0b_00000100);
282279 #[ doc = concat!( "assert_eq!(0_" , stringify!( $SelfT) , ".isolate_lowest_one(), 0);" ) ]
283280 /// ```
284- #[ unstable( feature = "isolate_most_least_significant_one" , issue = "136909" ) ]
281+ #[ stable( feature = "isolate_most_least_significant_one" , since = "CURRENT_RUSTC_VERSION" ) ]
282+ #[ rustc_const_stable( feature = "isolate_most_least_significant_one" , since = "CURRENT_RUSTC_VERSION" ) ]
285283 #[ must_use = "this returns the result of the operation, \
286284 without modifying the original"]
287285 #[ inline( always) ]
0 commit comments