We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abc49b9 commit eeabad2Copy full SHA for eeabad2
core/src/intrinsics.rs
@@ -1543,7 +1543,7 @@ extern "rust-intrinsic" {
1543
/// let num_trailing = unsafe { cttz_nonzero(x) };
1544
/// assert_eq!(num_trailing, 3);
1545
/// ```
1546
- #[rustc_const_unstable(feature = "const_cttz", issue = "none")]
+ #[rustc_const_stable(feature = "const_cttz", since = "1.53.0")]
1547
pub fn cttz_nonzero<T: Copy>(x: T) -> T;
1548
1549
/// Reverses the bytes in an integer type `T`.
core/src/lib.rs
@@ -79,7 +79,6 @@
79
#![feature(const_int_unchecked_arith)]
80
#![feature(const_mut_refs)]
81
#![feature(const_refs_to_cell)]
82
-#![feature(const_cttz)]
83
#![feature(const_panic)]
84
#![feature(const_pin)]
85
#![feature(const_fn)]
0 commit comments