]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/issue-4264.rs
Auto merge of #28119 - nagisa:bytesderef, r=alexcrichton
[rust.git] / src / test / pretty / issue-4264.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 // pretty-compare-only
12 // pretty-mode:hir,typed
13 // pp-exact:issue-4264.pp
14
15 // #4264 fixed-length vector types
16
17 pub fn foo(_: [i32; 3]) {}
18
19 pub fn bar() {
20     const FOO: usize = 5 - 4;
21     let _: [(); FOO] = [()];
22
23     let _ : [(); 1] = [()];
24
25     let _ = &([1,2,3]) as *const _ as *const [i32; 3];
26
27     format!("test");
28 }
29
30 pub type Foo = [i32; 3];
31
32 pub struct Bar {
33     pub x: [i32; 3]
34 }
35
36 pub struct TupleBar([i32; 4]);
37
38 pub enum Baz {
39     BazVariant([i32; 5])
40 }
41
42 pub fn id<T>(x: T) -> T { x }
43
44 pub fn use_id() {
45     let _ = id::<[i32; 3]>([1,2,3]);
46 }
47
48
49 fn main() {}