@@ -5,40 +5,46 @@ error[E0499]: cannot borrow `f` as mutable more than once at a time
5
5
| - ^^ second mutable borrow occurs here
6
6
| |
7
7
| first mutable borrow occurs here
8
- 23 | //~^ ERROR: cannot borrow `f` as mutable more than once
9
- 24 | f((Box::new(|| {})))
8
+ ...
9
+ 26 | f((Box::new(|| {})))
10
10
| - borrow occurs due to use of `f` in closure
11
- 25 | }));
11
+ 27 | }));
12
12
| - first borrow ends here
13
13
14
14
error: cannot borrow immutable borrowed content `*f` as mutable
15
- --> $DIR/borrowck-call-is-borrow-issue-12224.rs:35 :5
15
+ --> $DIR/borrowck-call-is-borrow-issue-12224.rs:39 :5
16
16
|
17
- 34 | fn test2<F>(f: &F) where F: FnMut() {
17
+ 37 | fn test2<F>(f: &F) where F: FnMut() {
18
18
| -- use `&mut F` here to make mutable
19
- 35 | (*f)(); //~ ERROR: cannot borrow immutable borrowed content `*f` as mutable
19
+ 38 | //~^ NOTE use `&mut F` here to make mutable
20
+ 39 | (*f)();
20
21
| ^^^^ cannot borrow as mutable
21
22
22
23
error: cannot borrow immutable `Box` content `*f.f` as mutable
23
- --> $DIR/borrowck-call-is-borrow-issue-12224.rs:43 :5
24
+ --> $DIR/borrowck-call-is-borrow-issue-12224.rs:50 :5
24
25
|
25
- 42 | fn test4(f: &Test) {
26
+ 48 | fn test4(f: &Test) {
26
27
| ----- use `&mut Test` here to make mutable
27
- 43 | f.f.call_mut(()) //~ ERROR: cannot borrow immutable `Box` content `*f.f` as mutable
28
+ 49 | //~^ NOTE use `&mut Test` here to make mutable
29
+ 50 | f.f.call_mut(())
28
30
| ^^^ cannot borrow as mutable
29
31
30
32
error[E0504]: cannot move `f` into closure because it is borrowed
31
- --> $DIR/borrowck-call-is-borrow-issue-12224.rs:61 :13
33
+ --> $DIR/borrowck-call-is-borrow-issue-12224.rs:72 :13
32
34
|
33
- 60 | f(Box::new(|a| {
35
+ 70 | f(Box::new(|a| {
34
36
| - borrow of `f` occurs here
35
- 61 | foo(f);
37
+ 71 | //~^ NOTE borrow of `f` occurs here
38
+ 72 | foo(f);
36
39
| ^ move into closure occurs here
37
40
38
41
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
39
- --> $DIR/borrowck-call-is-borrow-issue-12224.rs:61 :13
42
+ --> $DIR/borrowck-call-is-borrow-issue-12224.rs:72 :13
40
43
|
41
- 61 | foo(f);
44
+ 68 | let mut f = |g: Box<FnMut(isize)>, b: isize| {};
45
+ | ----- captured outer variable
46
+ ...
47
+ 72 | foo(f);
42
48
| ^ cannot move out of captured outer variable in an `FnMut` closure
43
49
44
50
error: aborting due to 5 previous errors
0 commit comments