mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 00:41:27 +00:00
14 lines
190 B
Rust
14 lines
190 B
Rust
//@ run-pass
|
|
|
|
pub fn main() {
|
|
let x = [1; 100];
|
|
let mut y = 0;
|
|
for i in &x[..] {
|
|
if y > 10 {
|
|
break;
|
|
}
|
|
y += *i;
|
|
}
|
|
assert_eq!(y, 11);
|
|
}
|