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