]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-7784.rs
librustc: Remove the fallback to `int` from typechecking.
[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 fn foo<T: Add<T, T> + Clone>([x, y, z]: [T, ..3]) -> (T, T, T) {
12     (x.clone(), x.clone() + y.clone(), x + y + z)
13 }
14 fn bar(a: &'static str, b: &'static str) -> [&'static str, ..4] {
15     [a, b, b, a]
16 }
17
18 fn main() {
19     assert_eq!(foo([1i, 2i, 3i]), (1i, 3i, 6i));
20
21     let [a, b, c, d] = bar("foo", "bar");
22     assert_eq!(a, "foo");
23     assert_eq!(b, "bar");
24     assert_eq!(c, "bar");
25     assert_eq!(d, "foo");
26
27     let [a, _, _, d] = bar("baz", "foo");
28     assert_eq!(a, "baz");
29     assert_eq!(d, "baz");
30
31     let out = bar("baz", "foo");
32     let [a, ..xs, d] = out;
33     assert_eq!(a, "baz");
34     assert!(xs == ["foo", "foo"]);
35     assert_eq!(d, "baz");
36 }