]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/break.rs
6498c4b461def60ad1e3d8da878c76210e4e4342
[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 pub fn main() {
12     let mut i = 0;
13     while i < 20 { i += 1; if i == 10 { break; } }
14     assert_eq!(i, 10);
15     loop { i += 1; if i == 20 { break; } }
16     assert_eq!(i, 20);
17     let xs = [1, 2, 3, 4, 5, 6];
18     for x in &xs {
19         if *x == 3 { break; } assert!((*x <= 3));
20     }
21     i = 0;
22     while i < 10 { i += 1; if i % 2 == 0 { continue; } assert!((i % 2 != 0)); }
23     i = 0;
24     loop {
25         i += 1; if i % 2 == 0 { continue; } assert!((i % 2 != 0));
26         if i >= 10 { break; }
27     }
28     let ys = vec!(1, 2, 3, 4, 5, 6);
29     for x in &ys {
30         if *x % 2 == 0 { continue; }
31         assert!((*x % 2 != 0));
32     }
33 }