]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/overloaded-autoderef.rs
rollup merge of #19625: mrhota/guide_traits
[rust.git] / src / test / run-pass / overloaded-autoderef.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::cell::RefCell;
12 use std::rc::Rc;
13 use std::num::ToPrimitive;
14
15 #[deriving(PartialEq, Show)]
16 struct Point {
17     x: int,
18     y: int
19 }
20
21 pub fn main() {
22     assert_eq!(Rc::new(5u).to_uint(), Some(5));
23     assert_eq!((box &box &Rc::new(box box &box 5u)).to_uint(), Some(5));
24     let point = Rc::new(Point {x: 2, y: 4});
25     assert_eq!(point.x, 2);
26     assert_eq!(point.y, 4);
27
28     let i = Rc::new(RefCell::new(2i));
29     let i_value = *i.borrow();
30     *i.borrow_mut() = 5;
31     assert_eq!((i_value, *i.borrow()), (2, 5));
32
33     let s = Rc::new("foo".to_string());
34     assert_eq!(s.as_slice(), "foo");
35
36     let mut_s = Rc::new(RefCell::new(String::from_str("foo")));
37     mut_s.borrow_mut().push_str("bar");
38     // HACK assert_eq! would panic here because it stores the LHS and RHS in two locals.
39     assert!(mut_s.borrow().as_slice() == "foobar");
40     assert!(mut_s.borrow_mut().as_slice() == "foobar");
41
42     let p = Rc::new(RefCell::new(Point {x: 1, y: 2}));
43     p.borrow_mut().x = 3;
44     p.borrow_mut().y += 3;
45     assert_eq!(*p.borrow(), Point {x: 3, y: 5});
46
47     let v = Rc::new(RefCell::new([1i, 2, 3]));
48     v.borrow_mut()[0] = 3;
49     v.borrow_mut()[1] += 3;
50     assert_eq!((v.borrow()[0], v.borrow()[1], v.borrow()[2]), (3, 5, 3));
51 }