rust/src/test/ui/span/borrowck-call-is-borrow-issue-12224.stderr

53 lines
1.8 KiB
Plaintext
Raw Normal View History

error[E0499]: cannot borrow `f` as mutable more than once at a time
2017-01-30 20:38:13 -06:00
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:22:16
|
2017-01-30 20:38:13 -06:00
22 | f(Box::new(|| {
| - ^^ second mutable borrow occurs here
| |
| first mutable borrow occurs here
2017-04-24 22:25:30 -05:00
...
26 | f((Box::new(|| {})))
| - borrow occurs due to use of `f` in closure
2017-11-20 06:13:27 -06:00
27 | //~^ NOTE borrow occurs due to use of `f` in closure
28 | }));
| - first borrow ends here
2017-05-27 12:58:52 -05:00
error[E0596]: cannot borrow immutable borrowed content `*f` as mutable
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:40:5
|
2017-11-20 06:13:27 -06:00
38 | fn test2<F>(f: &F) where F: FnMut() {
| -- use `&mut F` here to make mutable
2017-11-20 06:13:27 -06:00
39 | //~^ NOTE use `&mut F` here to make mutable
40 | (*f)();
| ^^^^ cannot borrow as mutable
2017-05-27 12:58:52 -05:00
error[E0596]: cannot borrow immutable `Box` content `*f.f` as mutable
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:51:5
|
2017-11-20 06:13:27 -06:00
49 | fn test4(f: &Test) {
| ----- use `&mut Test` here to make mutable
2017-11-20 06:13:27 -06:00
50 | //~^ NOTE use `&mut Test` here to make mutable
51 | f.f.call_mut(())
| ^^^ cannot borrow as mutable
error[E0504]: cannot move `f` into closure because it is borrowed
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:73:13
|
2017-11-20 06:13:27 -06:00
71 | f(Box::new(|a| {
| - borrow of `f` occurs here
2017-11-20 06:13:27 -06:00
72 | //~^ NOTE borrow of `f` occurs here
73 | foo(f);
| ^ move into closure occurs here
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
2017-11-20 06:13:27 -06:00
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:73:13
|
2017-11-20 06:13:27 -06:00
69 | let mut f = |g: Box<FnMut(isize)>, b: isize| {};
2017-04-24 22:25:30 -05:00
| ----- captured outer variable
...
2017-11-20 06:13:27 -06:00
73 | foo(f);
| ^ cannot move out of captured outer variable in an `FnMut` closure
error: aborting due to 5 previous errors