]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/linear-for-loop.rs
rollup merge of #16840 : huonw/feature-has-added
[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 // no-pretty-expanded FIXME #15189
12
13 extern crate debug;
14
15 pub fn main() {
16     let x = vec!(1i, 2i, 3i);
17     let mut y = 0i;
18     for i in x.iter() { println!("{:?}", *i); y += *i; }
19     println!("{:?}", y);
20     assert_eq!(y, 6);
21     let s = "hello there".to_string();
22     let mut i: int = 0;
23     for c in s.as_slice().bytes() {
24         if i == 0 { assert!((c == 'h' as u8)); }
25         if i == 1 { assert!((c == 'e' as u8)); }
26         if i == 2 { assert!((c == 'l' as u8)); }
27         if i == 3 { assert!((c == 'l' as u8)); }
28         if i == 4 { assert!((c == 'o' as u8)); }
29         // ...
30
31         i += 1;
32         println!("{:?}", i);
33         println!("{:?}", c);
34     }
35     assert_eq!(i, 11);
36 }