]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-7784.rs
Rollup merge of #33362 - andradei:master, r=Manishearth
[rust.git] / src / test / run-pass / issue-7784.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
12 #![feature(advanced_slice_patterns)]
13 #![feature(slice_patterns)]
14 #![feature(rustc_attrs)]
15
16 use std::ops::Add;
17
18 fn foo<T: Add<Output=T> + Clone>([x, y, z]: [T; 3]) -> (T, T, T) {
19     (x.clone(), x.clone() + y.clone(), x + y + z)
20 }
21 fn bar(a: &'static str, b: &'static str) -> [&'static str; 4] {
22     [a, b, b, a]
23 }
24
25 #[rustc_mir]
26 fn main() {
27     assert_eq!(foo([1, 2, 3]), (1, 3, 6));
28
29     let [a, b, c, d] = bar("foo", "bar");
30     assert_eq!(a, "foo");
31     assert_eq!(b, "bar");
32     assert_eq!(c, "bar");
33     assert_eq!(d, "foo");
34
35     let [a, _, _, d] = bar("baz", "foo");
36     assert_eq!(a, "baz");
37     assert_eq!(d, "baz");
38
39     let out = bar("baz", "foo");
40     let [a, xs.., d] = out;
41     assert_eq!(a, "baz");
42     assert_eq!(xs, ["foo", "foo"]);
43     assert_eq!(d, "baz");
44 }