mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
7 lines
155 B
Rust
7 lines
155 B
Rust
const _: () = unsafe {
|
|
let n = u32::MAX.count_ones();
|
|
std::hint::assert_unchecked(n < 32); //~ ERROR `assume` called with `false`
|
|
};
|
|
|
|
fn main() {}
|