]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-7012.rs
Merge branch 'master' into cfg_tmp_dir
[rust.git] / src / test / run-pass / issue-7012.rs
1 // Copyright 2013 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 /*
12 # Comparison of static arrays
13
14 The expected behaviour would be that test==test1, therefore 'true'
15 would be printed, however the below prints false.
16 */
17
18 struct signature<'a> { pattern : &'a [u32] }
19
20 static test1: signature<'static> =  signature {
21   pattern: &[0x243f6a88u32,0x85a308d3u32,0x13198a2eu32,0x03707344u32,0xa4093822u32,0x299f31d0u32]
22 };
23
24 pub fn main() {
25   let test: &[u32] = &[0x243f6a88u32,0x85a308d3u32,0x13198a2eu32,
26                        0x03707344u32,0xa4093822u32,0x299f31d0u32];
27   println!("{}",test==test1.pattern);
28 }