blob: d2234e17ac75ca07727285d9574f48beaf13f734 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
struct Point { x: isize, y: isize }
trait Methods {
fn impurem(&self);
fn blockm<F>(&self, f: F) where F: FnOnce();
}
impl Methods for Point {
fn impurem(&self) {
}
fn blockm<F>(&self, f: F) where F: FnOnce() { f() }
}
fn a() {
let mut p = Point {x: 3, y: 4};
// Here: it's ok to call even though receiver is mutable, because we
// can loan it out.
p.impurem();
// But in this case we do not honor the loan:
p.blockm(|| { //~ ERROR cannot borrow `p` as mutable
p.x = 10;
})
}
fn b() {
let mut p = Point {x: 3, y: 4};
// Here I create an outstanding loan and check that we get conflicts:
let l = &mut p;
p.impurem(); //~ ERROR cannot borrow
l.x += 1;
}
fn main() {
}
|