]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/self-in-mut-slot-default-method.rs
fallout: run-pass tests that use box. (many could be ported to `Box::new` instead...
[rust.git] / src / test / run-pass / self-in-mut-slot-default-method.rs
1 // Copyright 2013 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 #![allow(unknown_features)]
12 #![feature(box_syntax)]
13
14 struct X {
15     a: int
16 }
17
18 trait Changer : Sized {
19     fn change(mut self) -> Self {
20         self.set_to(55);
21         self
22     }
23
24     fn change_again(mut self: Box<Self>) -> Box<Self> {
25         self.set_to(45);
26         self
27     }
28
29     fn set_to(&mut self, a: int);
30 }
31
32 impl Changer for X {
33     fn set_to(&mut self, a: int) {
34         self.a = a;
35     }
36 }
37
38 pub fn main() {
39     let x = X { a: 32 };
40     let new_x = x.change();
41     assert_eq!(new_x.a, 55);
42
43     let x = box new_x;
44     let new_x = x.change_again();
45     assert_eq!(new_x.a, 45);
46 }