rust/src/test/run-pass/foreach-nested.rs

18 lines
314 B
Rust
Raw Normal View History

// -*- rust -*-
2012-01-23 16:59:00 -06:00
fn two(it: fn(int)) { it(0); it(1); }
2011-04-19 15:35:49 -05:00
fn main() {
let a: [mutable int] = [mutable -1, -1, -1, -1];
let mut p: int = 0;
two {|i|
two {|j| a[p] = 10 * i + j; p += 1; };
};
assert (a[0] == 0);
assert (a[1] == 1);
assert (a[2] == 10);
assert (a[3] == 11);
}