]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/linear-for-loop.rs
auto merge of #13613 : alexcrichton/rust/fix-freebsd-compile, r=brson
[rust.git] / src / test / run-pass / linear-for-loop.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 pub fn main() {
12     let x = vec!(1, 2, 3);
13     let mut y = 0;
14     for i in x.iter() { println!("{:?}", *i); y += *i; }
15     println!("{:?}", y);
16     assert_eq!(y, 6);
17     let s = "hello there".to_owned();
18     let mut i: int = 0;
19     for c in s.bytes() {
20         if i == 0 { assert!((c == 'h' as u8)); }
21         if i == 1 { assert!((c == 'e' as u8)); }
22         if i == 2 { assert!((c == 'l' as u8)); }
23         if i == 3 { assert!((c == 'l' as u8)); }
24         if i == 4 { assert!((c == 'o' as u8)); }
25         // ...
26
27         i += 1;
28         println!("{:?}", i);
29         println!("{:?}", c);
30     }
31     assert_eq!(i, 11);
32 }