]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-7784.rs
auto merge of #19514 : jbranchaud/rust/add-btree-set-bitor, r=Gankro
[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 #![feature(advanced_slice_patterns)]
12
13 fn foo<T: Add<T, T> + Clone>([x, y, z]: [T, ..3]) -> (T, T, T) {
14     (x.clone(), x.clone() + y.clone(), x + y + z)
15 }
16 fn bar(a: &'static str, b: &'static str) -> [&'static str, ..4] {
17     [a, b, b, a]
18 }
19
20 fn main() {
21     assert_eq!(foo([1i, 2i, 3i]), (1i, 3i, 6i));
22
23     let [a, b, c, d] = bar("foo", "bar");
24     assert_eq!(a, "foo");
25     assert_eq!(b, "bar");
26     assert_eq!(c, "bar");
27     assert_eq!(d, "foo");
28
29     let [a, _, _, d] = bar("baz", "foo");
30     assert_eq!(a, "baz");
31     assert_eq!(d, "baz");
32
33     let out = bar("baz", "foo");
34     let [a, xs.., d] = out;
35     assert_eq!(a, "baz");
36     assert!(xs == ["foo", "foo"]);
37     assert_eq!(d, "baz");
38 }