mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
240 B
Rust
11 lines
240 B
Rust
#![feature(hint_assert_unchecked)]
|
|
#![feature(const_hint_assert_unchecked)]
|
|
|
|
const _: () = unsafe {
|
|
let n = u32::MAX.count_ones();
|
|
std::hint::assert_unchecked(n < 32); //~ ERROR evaluation of constant value failed
|
|
};
|
|
|
|
fn main() {
|
|
}
|