File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -3274,14 +3274,14 @@ macro_rules! uint_impl {
32743274 /// Basic usage:
32753275 ///
32763276 /// ```
3277- /// #![feature(unsigned_is_multiple_of)]
32783277 #[ doc = concat!( "assert!(6_" , stringify!( $SelfT) , ".is_multiple_of(2));" ) ]
32793278 #[ doc = concat!( "assert!(!5_" , stringify!( $SelfT) , ".is_multiple_of(2));" ) ]
32803279 ///
32813280 #[ doc = concat!( "assert!(0_" , stringify!( $SelfT) , ".is_multiple_of(0));" ) ]
32823281 #[ doc = concat!( "assert!(!6_" , stringify!( $SelfT) , ".is_multiple_of(0));" ) ]
32833282 /// ```
3284- #[ unstable( feature = "unsigned_is_multiple_of" , issue = "128101" ) ]
3283+ #[ stable( feature = "unsigned_is_multiple_of" , since = "CURRENT_RUSTC_VERSION" ) ]
3284+ #[ rustc_const_stable( feature = "unsigned_is_multiple_of" , since = "CURRENT_RUSTC_VERSION" ) ]
32853285 #[ must_use]
32863286 #[ inline]
32873287 #[ 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) ]
Original file line number Diff line number Diff line change 1616#![ feature( unqualified_local_imports) ]
1717#![ feature( derive_coerce_pointee) ]
1818#![ feature( arbitrary_self_types) ]
19- #![ feature( unsigned_is_multiple_of) ]
2019#![ feature( extract_if) ]
2120// Configure clippy and other lints
2221#![ allow(
You can’t perform that action at this time.
0 commit comments