summary refs log tree commit diff
path: root/src/test/run-pass/foreach-put-structured.rs
blob: 5919ee91b441e08b0b8689574e283ac2524a107c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21


fn pairs(it: block((int, int))) {
    let i: int = 0;
    let j: int = 0;
    while i < 10 { it((i, j)); i += 1; j += i; }
}

fn main() {
    let i: int = 10;
    let j: int = 0;
    pairs() {|p|
        let (_0, _1) = p;
        log(debug, _0);
        log(debug, _1);
        assert (_0 + 10 == i);
        i += 1;
        j = _1;
    };
    assert (j == 45);
}