]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/range.rs
50b90b1a5ee0b409bc14e5d88b5334333dca47f7
[rust.git] / src / test / run-pass / range.rs
1 // Copyright 2014 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 // Test range syntax.
12
13 fn foo() -> int { 42 }
14
15 // Test that range syntax works in return statements
16 fn return_range_to() -> ::std::ops::RangeTo<i32> { return ..1; }
17 fn return_full_range() -> ::std::ops::RangeFull { return ..; }
18
19 pub fn main() {
20     let mut count = 0;
21     for i in 0_usize..10 {
22         assert!(i >= 0 && i < 10);
23         count += i;
24     }
25     assert!(count == 45);
26
27     let mut count = 0;
28     let mut range = 0_usize..10;
29     for i in range {
30         assert!(i >= 0 && i < 10);
31         count += i;
32     }
33     assert!(count == 45);
34
35     let mut count = 0;
36     let mut rf = 3_usize..;
37     for i in rf.take(10) {
38         assert!(i >= 3 && i < 13);
39         count += i;
40     }
41     assert!(count == 75);
42
43     let _ = 0_usize..4+4-3;
44     let _ = 0..foo();
45
46     let _ = ..42_usize;
47
48     // Test we can use two different types with a common supertype.
49     let x = &42;
50     {
51         let y = 42;
52         let _ = x..&y;
53     }
54 }