mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 02:31:13 +00:00
6 lines
104 B
Rust
6 lines
104 B
Rust
//@ run-pass
|
|
|
|
|
|
|
|
pub fn main() { let x: isize = 10; while x == 10 && x == 11 { let _y = 0xf00_usize; } }
|