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

53 lines
2.0 KiB
Plaintext
Raw Normal View History

error[E0499]: cannot borrow `f` as mutable more than once at a time
2018-12-25 09:56:47 -06:00
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:12:16
|
2018-02-22 18:42:32 -06:00
LL | f(Box::new(|| {
| - ^^ second mutable borrow occurs here
| |
| first mutable borrow occurs here
| first borrow later used by call
2019-03-09 06:03:44 -06:00
LL |
2018-02-22 18:42:32 -06:00
LL | f((Box::new(|| {})))
| - second borrow occurs due to use of `f` in closure
error[E0596]: cannot borrow `*f` as mutable, as it is behind a `&` reference
2018-12-25 09:56:47 -06:00
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:25:5
|
2018-02-22 18:42:32 -06:00
LL | fn test2<F>(f: &F) where F: FnMut() {
| -- help: consider changing this to be a mutable reference: `&mut F`
2018-02-22 18:42:32 -06:00
LL | (*f)();
| ^^^^ `f` is a `&` reference, so the data it refers to cannot be borrowed as mutable
error[E0596]: cannot borrow `f.f` as mutable, as it is behind a `&` reference
2018-12-25 09:56:47 -06:00
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:34:5
|
2018-02-22 18:42:32 -06:00
LL | fn test4(f: &Test) {
| ----- help: consider changing this to be a mutable reference: `&mut Test<'_>`
2018-02-22 18:42:32 -06:00
LL | f.f.call_mut(())
| ^^^ `f` is a `&` reference, so the data it refers to cannot be borrowed as mutable
error[E0507]: cannot move out of captured variable in an `FnMut` closure
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:57:13
|
2019-05-28 13:46:13 -05:00
LL | let mut f = move |g: Box<dyn FnMut(isize)>, b: isize| {
2017-04-24 22:25:30 -05:00
| ----- captured outer variable
...
2018-02-22 18:42:32 -06:00
LL | foo(f);
| ^ cannot move out of captured variable in an `FnMut` closure
error[E0505]: cannot move out of `f` because it is borrowed
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:55:16
|
LL | f(Box::new(|a| {
| - ^^^ move out of `f` occurs here
| |
| borrow of `f` occurs here
LL |
LL | foo(f);
| - move occurs due to use in closure
error: aborting due to 5 previous errors
Some errors have detailed explanations: E0499, E0505, E0507, E0596.
2018-03-03 08:59:40 -06:00
For more information about an error, try `rustc --explain E0499`.