2016-11-08 09:21:53 +03:00
|
|
|
error[E0499]: cannot borrow `f` as mutable more than once at a time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:12:16
|
2016-11-08 09:21:53 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | f(Box::new(|| {
|
2016-11-08 09:21:53 +03:00
|
|
|
| - ^^ second mutable borrow occurs here
|
|
|
|
| |
|
|
|
|
| first mutable borrow occurs here
|
2019-03-09 15:03:44 +03:00
|
|
|
LL |
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | f((Box::new(|| {})))
|
2016-11-08 09:21:53 +03:00
|
|
|
| - borrow occurs due to use of `f` in closure
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | }));
|
2016-11-08 09:21:53 +03:00
|
|
|
| - first borrow ends here
|
|
|
|
|
2017-05-27 19:58:52 +02:00
|
|
|
error[E0596]: cannot borrow immutable borrowed content `*f` as mutable
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:25:5
|
2016-11-08 09:21:53 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn test2<F>(f: &F) where F: FnMut() {
|
2016-11-08 09:21:53 +03:00
|
|
|
| -- use `&mut F` here to make mutable
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | (*f)();
|
2017-01-16 23:42:11 -08:00
|
|
|
| ^^^^ cannot borrow as mutable
|
2016-11-08 09:21:53 +03:00
|
|
|
|
2018-10-28 17:53:43 +09:00
|
|
|
error[E0596]: cannot borrow field `f.f` of immutable binding as mutable
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:34:5
|
2016-11-08 09:21:53 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn test4(f: &Test) {
|
2017-01-16 23:42:11 -08:00
|
|
|
| ----- use `&mut Test` here to make mutable
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | f.f.call_mut(())
|
2018-10-28 17:53:43 +09:00
|
|
|
| ^^^ cannot mutably borrow field of immutable binding
|
2016-11-08 09:21:53 +03:00
|
|
|
|
|
|
|
error[E0504]: cannot move `f` into closure because it is borrowed
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:56:13
|
2016-11-08 09:21:53 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | f(Box::new(|a| {
|
2016-11-08 09:21:53 +03:00
|
|
|
| - borrow of `f` occurs here
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | foo(f);
|
2016-11-08 09:21:53 +03:00
|
|
|
| ^ move into closure occurs here
|
|
|
|
|
|
|
|
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:56:13
|
2016-11-08 09:21:53 +03:00
|
|
|
|
|
2018-03-23 10:57:28 +01:00
|
|
|
LL | let mut f = move |g: Box<FnMut(isize)>, b: isize| {
|
2017-04-24 20:25:30 -07:00
|
|
|
| ----- captured outer variable
|
2018-03-23 10:57:28 +01:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | foo(f);
|
2016-11-08 09:21:53 +03:00
|
|
|
| ^ cannot move out of captured outer variable in an `FnMut` closure
|
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to 5 previous errors
|
2016-11-08 09:21:53 +03:00
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0499, E0504, E0507, E0596.
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about an error, try `rustc --explain E0499`.
|