about summary refs log tree commit diff
path: root/tests/ui/self/uniq-self-in-mut-slot.rs
blob: 6d087b7356fb8796451fc1715902180571f9d46a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//@ run-pass

struct X {
    a: isize
}

trait Changer {
    fn change(self: Box<Self>) -> Box<Self>;
}

impl Changer for X {
    fn change(mut self: Box<X>) -> Box<X> {
        self.a = 55;
        self
    }
}

pub fn main() {
    let x: Box<_> = Box::new(X { a: 32 });
    let new_x = x.change();
    assert_eq!(new_x.a, 55);
}