]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/break.rs
Merge remote-tracking branch 'upstream/io' into io
[rust.git] / src / test / run-pass / break.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 use std::vec;
12
13 pub fn main() {
14     let mut i = 0;
15     while i < 20 { i += 1; if i == 10 { break; } }
16     assert_eq!(i, 10);
17     loop { i += 1; if i == 20 { break; } }
18     assert_eq!(i, 20);
19     for vec::each(~[1, 2, 3, 4, 5, 6]) |x| {
20         if *x == 3 { break; } assert!((*x <= 3));
21     }
22     i = 0;
23     while i < 10 { i += 1; if i % 2 == 0 { loop; } assert!((i % 2 != 0)); }
24     i = 0;
25     loop {
26         i += 1; if i % 2 == 0 { loop; } assert!((i % 2 != 0));
27         if i >= 10 { break; }
28     }
29     for vec::each(~[1, 2, 3, 4, 5, 6]) |x| {
30         if *x % 2 == 0 { loop; }
31         assert!((*x % 2 != 0));
32     }
33 }