rust/src/test/run-pass/foreach-put-structured.rs

22 lines
388 B
Rust
Raw Normal View History

fn pairs(it: block((int, int))) {
2011-07-27 07:19:39 -05:00
let i: int = 0;
let j: int = 0;
while i < 10 { it((i, j)); i += 1; j += i; }
2010-06-23 23:03:09 -05:00
}
fn main() {
2011-07-27 07:19:39 -05:00
let i: int = 10;
let j: int = 0;
pairs() {|p|
let (_0, _1) = p;
log_full(core::debug, _0);
log_full(core::debug, _1);
assert (_0 + 10 == i);
i += 1;
j = _1;
};
assert (j == 45);
}