mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
247 B
Rust
16 lines
247 B
Rust
// run-pass
|
|
|
|
pub fn main() {
|
|
let x = [1; 100];
|
|
let y = [2; 100];
|
|
let mut p = 0;
|
|
let mut q = 0;
|
|
for i in &x[..] {
|
|
for j in &y[..] {
|
|
p += *j;
|
|
}
|
|
q += *i + p;
|
|
}
|
|
assert_eq!(q, 1010100);
|
|
}
|