]> git.lizzy.rs Git - rust.git/blob - src/test/ui/dst/dst-bad-coerce1.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / dst / dst-bad-coerce1.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 // Attempt to change the type as well as unsizing.
12
13 #![feature(unsized_tuple_coercion)]
14
15 struct Fat<T: ?Sized> {
16     ptr: T
17 }
18
19 struct Foo;
20 trait Bar { fn bar(&self) {} }
21
22 pub fn main() {
23     // With a vec of isize.
24     let f1 = Fat { ptr: [1, 2, 3] };
25     let f2: &Fat<[isize; 3]> = &f1;
26     let f3: &Fat<[usize]> = f2;
27     //~^ ERROR mismatched types
28
29     // With a trait.
30     let f1 = Fat { ptr: Foo };
31     let f2: &Fat<Foo> = &f1;
32     let f3: &Fat<Bar> = f2;
33     //~^ ERROR `Foo: Bar` is not satisfied
34
35     // Tuple with a vec of isize.
36     let f1 = ([1, 2, 3],);
37     let f2: &([isize; 3],) = &f1;
38     let f3: &([usize],) = f2;
39     //~^ ERROR mismatched types
40
41     // Tuple with a trait.
42     let f1 = (Foo,);
43     let f2: &(Foo,) = &f1;
44     let f3: &(Bar,) = f2;
45     //~^ ERROR `Foo: Bar` is not satisfied
46 }