File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -3320,14 +3320,14 @@ macro_rules! uint_impl {
33203320 /// Basic usage:
33213321 ///
33223322 /// ```
3323- /// #![feature(unsigned_is_multiple_of)]
33243323 #[ doc = concat!( "assert!(6_" , stringify!( $SelfT) , ".is_multiple_of(2));" ) ]
33253324 #[ doc = concat!( "assert!(!5_" , stringify!( $SelfT) , ".is_multiple_of(2));" ) ]
33263325 ///
33273326 #[ doc = concat!( "assert!(0_" , stringify!( $SelfT) , ".is_multiple_of(0));" ) ]
33283327 #[ doc = concat!( "assert!(!6_" , stringify!( $SelfT) , ".is_multiple_of(0));" ) ]
33293328 /// ```
3330- #[ unstable( feature = "unsigned_is_multiple_of" , issue = "128101" ) ]
3329+ #[ stable( feature = "unsigned_is_multiple_of" , since = "CURRENT_RUSTC_VERSION" ) ]
3330+ #[ rustc_const_stable( feature = "unsigned_is_multiple_of" , since = "CURRENT_RUSTC_VERSION" ) ]
33313331 #[ must_use]
33323332 #[ inline]
33333333 #[ rustc_inherit_overflow_checks]
Original file line number Diff line number Diff line change 8787#![ feature( try_blocks) ]
8888#![ feature( try_find) ]
8989#![ feature( try_trait_v2) ]
90- #![ feature( unsigned_is_multiple_of) ]
9190#![ feature( unsize) ]
9291#![ feature( unsized_tuple_coercion) ]
9392#![ feature( unwrap_infallible) ]
You can’t perform that action at this time.
0 commit comments