2016-11-08 00:21:53 -06:00
|
|
|
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
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-01-30 20:38:13 -06:00
|
|
|
22 | f(Box::new(|| {
|
2016-11-08 00:21:53 -06:00
|
|
|
| - ^^ second mutable borrow occurs here
|
|
|
|
| |
|
|
|
|
| first mutable borrow occurs here
|
2017-12-10 14:29:24 -06:00
|
|
|
23 | //~^ ERROR: cannot borrow `f` as mutable more than once
|
|
|
|
24 | f((Box::new(|| {})))
|
2016-11-08 00:21:53 -06:00
|
|
|
| - borrow occurs due to use of `f` in closure
|
2017-12-10 14:29:24 -06:00
|
|
|
25 | }));
|
2016-11-08 00:21:53 -06:00
|
|
|
| - first borrow ends here
|
|
|
|
|
2017-05-27 12:58:52 -05:00
|
|
|
error[E0596]: cannot borrow immutable borrowed content `*f` as mutable
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:35:5
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
34 | fn test2<F>(f: &F) where F: FnMut() {
|
2016-11-08 00:21:53 -06:00
|
|
|
| -- use `&mut F` here to make mutable
|
2017-12-10 14:29:24 -06:00
|
|
|
35 | (*f)();
|
2017-01-17 01:42:11 -06:00
|
|
|
| ^^^^ cannot borrow as mutable
|
2016-11-08 00:21:53 -06:00
|
|
|
|
2017-12-31 17:32:41 -06:00
|
|
|
error[E0596]: cannot borrow `Box` content `*f.f` of immutable binding as mutable
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:44:5
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
43 | fn test4(f: &Test) {
|
2017-01-17 01:42:11 -06:00
|
|
|
| ----- use `&mut Test` here to make mutable
|
2017-12-10 14:29:24 -06:00
|
|
|
44 | f.f.call_mut(())
|
2017-01-17 01:42:11 -06:00
|
|
|
| ^^^ cannot borrow as mutable
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
|
|
error[E0504]: cannot move `f` into closure because it is borrowed
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:63:13
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
62 | f(Box::new(|a| {
|
2016-11-08 00:21:53 -06:00
|
|
|
| - borrow of `f` occurs here
|
2017-12-10 14:29:24 -06:00
|
|
|
63 | foo(f);
|
2016-11-08 00:21:53 -06:00
|
|
|
| ^ move into closure occurs here
|
|
|
|
|
|
|
|
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:63:13
|
2016-11-08 00:21:53 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
61 | let mut f = |g: Box<FnMut(isize)>, b: isize| {};
|
2017-04-24 22:25:30 -05:00
|
|
|
| ----- captured outer variable
|
2017-12-10 14:29:24 -06:00
|
|
|
62 | f(Box::new(|a| {
|
|
|
|
63 | foo(f);
|
2016-11-08 00:21:53 -06:00
|
|
|
| ^ cannot move out of captured outer variable in an `FnMut` closure
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2016-11-08 00:21:53 -06:00
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
You've got a few errors: E0499, E0504, E0507, E0596
|
|
|
|
If you want more information on an error, try using "rustc --explain E0499"
|