]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-loan-rcvr-overloaded-op.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / borrowck-loan-rcvr-overloaded-op.rs
1 // Copyright 2012 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::Add;
12
13 #[derive(Copy)]
14 struct Point {
15     x: isize,
16     y: isize,
17 }
18
19 impl Add<isize> for Point {
20     type Output = isize;
21
22     fn add(self, z: isize) -> isize {
23         self.x + self.y + z
24     }
25 }
26
27 impl Point {
28     pub fn times(&self, z: isize) -> isize {
29         self.x * self.y * z
30     }
31 }
32
33 fn a() {
34     let mut p = Point {x: 3, y: 4};
35
36     // ok (we can loan out rcvr)
37     p + 3;
38     p.times(3);
39 }
40
41 fn b() {
42     let mut p = Point {x: 3, y: 4};
43
44     // Here I create an outstanding loan and check that we get conflicts:
45
46     let q = &mut p;
47
48     p + 3;  //~ ERROR cannot use `p`
49     p.times(3); //~ ERROR cannot borrow `p`
50
51     *q + 3; // OK to use the new alias `q`
52     q.x += 1; // and OK to mutate it
53 }
54
55 fn main() {
56 }