mirror of
https://git.proxmox.com/git/rustc
synced 2026-02-03 17:06:37 +00:00
12 lines
152 B
Rust
12 lines
152 B
Rust
//@ run-pass
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
pub fn main() {
|
|
let mut i: isize = 0;
|
|
while i < 1000000 {
|
|
i += 1;
|
|
let x = 3;
|
|
}
|
|
}
|