mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 09:32:46 +00:00
9 lines
103 B
Rust
9 lines
103 B
Rust
// run-pass
|
|
|
|
// compile-flags: -O
|
|
|
|
fn main() {
|
|
let x = &(0u32 - 1);
|
|
assert_eq!(*x, u32::MAX)
|
|
}
|