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

51 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
|
2018-02-22 18:42:32 -06:00
LL | f(Box::new(|| {
| - ^^ second mutable borrow occurs here
| |
| first mutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | //~^ ERROR: cannot borrow `f` as mutable more than once
2018-02-22 18:42:32 -06:00
LL | f((Box::new(|| {})))
| - borrow occurs due to use of `f` in closure
2018-02-22 18:42:32 -06:00
LL | }));
| - first borrow ends here
2017-05-27 12:58:52 -05:00
error[E0596]: cannot borrow immutable borrowed content `*f` as mutable
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:35:5
|
2018-02-22 18:42:32 -06:00
LL | fn test2<F>(f: &F) where F: FnMut() {
| -- use `&mut F` here to make mutable
2018-02-22 18:42:32 -06:00
LL | (*f)();
| ^^^^ cannot borrow as mutable
error[E0596]: cannot borrow `Box` content `*f.f` of immutable binding as mutable
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:44:5
|
2018-02-22 18:42:32 -06:00
LL | fn test4(f: &Test) {
| ----- use `&mut Test` here to make mutable
2018-02-22 18:42:32 -06:00
LL | f.f.call_mut(())
| ^^^ cannot borrow as mutable
error[E0504]: cannot move `f` into closure because it is borrowed
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:63:13
|
2018-02-22 18:42:32 -06:00
LL | f(Box::new(|a| {
| - borrow of `f` occurs here
2018-02-22 18:42:32 -06:00
LL | foo(f);
| ^ move into closure occurs here
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:63:13
|
2018-02-22 18:42:32 -06:00
LL | let mut f = |g: Box<FnMut(isize)>, b: isize| {};
2017-04-24 22:25:30 -05:00
| ----- captured outer variable
2018-02-24 17:01:39 -06:00
LL | f(Box::new(|a| {
2018-02-22 18:42:32 -06:00
LL | foo(f);
| ^ cannot move out of captured outer variable in an `FnMut` closure
error: aborting due to 5 previous errors
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"