]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/dst-bad-assign-2.rs
rollup merge of #17355 : gamazeps/issue17210
[rust.git] / src / test / compile-fail / dst-bad-assign-2.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 // Forbid assignment into a dynamically sized type.
12
13 struct Fat<Sized? T> {
14     f1: int,
15     f2: &'static str,
16     ptr: T
17 }
18
19 #[deriving(PartialEq,Eq)]
20 struct Bar;
21
22 #[deriving(PartialEq,Eq)]
23 struct Bar1 {
24     f: int
25 }
26
27 trait ToBar {
28     fn to_bar(&self) -> Bar;
29     fn to_val(&self) -> int;
30 }
31
32 impl ToBar for Bar1 {
33     fn to_bar(&self) -> Bar {
34         Bar
35     }
36     fn to_val(&self) -> int {
37         self.f
38     }
39 }
40
41 pub fn main() {
42     // Assignment.
43     let f5: &mut Fat<ToBar> = &mut Fat { f1: 5, f2: "some str", ptr: Bar1 {f :42} };
44     let z: Box<ToBar> = box Bar1 {f: 36};
45     f5.ptr = *z;
46     //~^ ERROR the trait `core::kinds::Sized` is not implemented
47 }