]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/fixup-deref-mut.rs
auto merge of #17654 : gereeter/rust/no-unnecessary-cell, r=alexcrichton
[rust.git] / src / test / run-pass / fixup-deref-mut.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 // Generic unique/owned smaht pointer.
12 struct Own<T> {
13     value: *mut T
14 }
15
16 impl<T> Deref<T> for Own<T> {
17     fn deref<'a>(&'a self) -> &'a T {
18         unsafe { &*self.value }
19     }
20 }
21
22 impl<T> DerefMut<T> for Own<T> {
23     fn deref_mut<'a>(&'a mut self) -> &'a mut T {
24         unsafe { &mut *self.value }
25     }
26 }
27
28 struct Point {
29     x: int,
30     y: int
31 }
32
33 impl Point {
34     fn get(&mut self) -> (int, int) {
35         (self.x, self.y)
36     }
37 }
38
39 fn test0(mut x: Own<Point>) {
40     let _ = x.get();
41 }
42
43 fn test1(mut x: Own<Own<Own<Point>>>) {
44     let _ = x.get();
45 }
46
47 fn test2(mut x: Own<Own<Own<Point>>>) {
48     let _ = (**x).get();
49 }
50
51 fn main() {}
52