]> git.proxmox.com Git - rustc.git/blob - src/test/run-pass/check-static-slice.rs
6e2cfedf9ec3ebed8eabf9d6a166043bf8ec3a17
[rustc.git] / src / test / run-pass / check-static-slice.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 // Check that the various ways of getting to a reference to a vec (both sized
12 // and unsized) work properly.
13
14 const aa: [int; 3] = [1, 2, 3];
15 const ab: &'static [int; 3] = &aa;
16 const ac: &'static [int] = ab;
17 const ad: &'static [int] = &aa;
18 const ae: &'static [int; 3] = &[1, 2, 3];
19 const af: &'static [int] = &[1, 2, 3];
20
21 static ca: int = aa[0];
22 static cb: int = ab[1];
23 static cc: int = ac[2];
24 static cd: int = ad[0];
25 static ce: int = ae[1];
26 static cf: int = af[2];
27
28 fn main () {
29 let b: &[int] = &[1, 2, 3];
30 assert!(ac == b);
31 assert!(ad == b);
32 assert!(af == b);
33
34 assert!(ca == 1);
35 assert!(cb == 2);
36 assert!(cc == 3);
37 assert!(cd == 1);
38 assert!(ce == 2);
39 assert!(cf == 3);
40 }