]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/foreach-put-structured.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / foreach-put-structured.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12
13 fn pairs<F>(mut it: F) where F: FnMut((isize, isize)) {
14     let mut i: isize = 0;
15     let mut j: isize = 0;
16     while i < 10 { it((i, j)); i += 1; j += i; }
17 }
18
19 pub fn main() {
20     let mut i: isize = 10;
21     let mut j: isize = 0;
22     pairs(|p| {
23         let (_0, _1) = p;
24         println!("{}", _0);
25         println!("{}", _1);
26         assert_eq!(_0 + 10, i);
27         i += 1;
28         j = _1;
29     });
30     assert_eq!(j, 45);
31 }