rust/src/test/run-pass/issue-11205.rs

95 lines
1.9 KiB
Rust
Raw Normal View History

// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![allow(dead_code)]
#![allow(unknown_features)]
#![feature(box_syntax)]
trait Foo { fn dummy(&self) { } }
impl Foo for int {}
fn foo(_: [&Foo; 2]) {}
fn foos(_: &[&Foo]) {}
fn foog<T>(_: &[T], _: &[T]) {}
fn bar(_: [Box<Foo>; 2]) {}
fn bars(_: &[Box<Foo>]) {}
fn main() {
2015-01-25 15:05:03 -06:00
let x: [&Foo; 2] = [&1, &2];
foo(x);
2015-01-25 15:05:03 -06:00
foo([&1, &2]);
2015-01-25 15:05:03 -06:00
let r = &1;
let x: [&Foo; 2] = [r; 2];
foo(x);
2015-01-25 15:05:03 -06:00
foo([&1; 2]);
2015-01-25 15:05:03 -06:00
let x: &[&Foo] = &[&1, &2];
foos(x);
2015-01-25 15:05:03 -06:00
foos(&[&1, &2]);
2015-01-25 15:05:03 -06:00
let x: &[&Foo] = &[&1, &2];
let r = &1;
foog(x, &[r]);
2015-01-25 15:05:03 -06:00
let x: [Box<Foo>; 2] = [box 1, box 2];
bar(x);
2015-01-25 15:05:03 -06:00
bar([box 1, box 2]);
2015-01-25 15:05:03 -06:00
let x: &[Box<Foo>] = &[box 1, box 2];
bars(x);
2015-01-25 15:05:03 -06:00
bars(&[box 1, box 2]);
2015-01-25 15:05:03 -06:00
let x: &[Box<Foo>] = &[box 1, box 2];
foog(x, &[box 1]);
struct T<'a> {
t: [&'a (Foo+'a); 2]
}
let _n = T {
2015-01-25 15:05:03 -06:00
t: [&1, &2]
};
2015-01-25 15:05:03 -06:00
let r = &1;
let _n = T {
t: [r; 2]
};
2015-01-25 15:05:03 -06:00
let x: [&Foo; 2] = [&1, &2];
let _n = T {
t: x
};
struct F<'b> {
t: &'b [&'b (Foo+'b)]
}
let _n = F {
2015-01-25 15:05:03 -06:00
t: &[&1, &2]
};
2015-01-25 15:05:03 -06:00
let r = &1;
let r: [&Foo; 2] = [r; 2];
let _n = F {
2014-11-17 02:39:01 -06:00
t: &r
};
2015-01-25 15:05:03 -06:00
let x: [&Foo; 2] = [&1, &2];
let _n = F {
2014-11-17 02:39:01 -06:00
t: &x
};
struct M<'a> {
t: &'a [Box<Foo+'static>]
}
let _n = M {
2015-01-25 15:05:03 -06:00
t: &[box 1, box 2]
};
2015-01-25 15:05:03 -06:00
let x: [Box<Foo>; 2] = [box 1, box 2];
let _n = M {
2014-11-17 02:39:01 -06:00
t: &x
};
}