]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/break.rs
auto merge of #8172 : brson/rust/nomorestack, r=pcwalton
[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     let xs = [1, 2, 3, 4, 5, 6];
20     foreach x in xs.iter() {
21         if *x == 3 { break; } assert!((*x <= 3));
22     }
23     i = 0;
24     while i < 10 { i += 1; if i % 2 == 0 { loop; } assert!((i % 2 != 0)); }
25     i = 0;
26     loop {
27         i += 1; if i % 2 == 0 { loop; } assert!((i % 2 != 0));
28         if i >= 10 { break; }
29     }
30     let ys = ~[1, 2, 3, 4, 5, 6];
31     foreach x in ys.iter() {
32         if *x % 2 == 0 { loop; }
33         assert!((*x % 2 != 0));
34     }
35 }