mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
373 lines
12 KiB
Plaintext
373 lines
12 KiB
Plaintext
error[E0499]: cannot borrow `x` as mutable more than once at a time
|
|
--> $DIR/borrowck-describe-lvalue.rs:254:13
|
|
|
|
|
LL | let y = &mut x;
|
|
| ------ first mutable borrow occurs here
|
|
LL | &mut x;
|
|
| ^^^^^^ second mutable borrow occurs here
|
|
LL | *y = 1;
|
|
| ------ first borrow later used here
|
|
|
|
error[E0499]: cannot borrow `x` as mutable more than once at a time
|
|
--> $DIR/borrowck-describe-lvalue.rs:264:20
|
|
|
|
|
LL | let y = &mut x;
|
|
| ------ first mutable borrow occurs here
|
|
LL | &mut x;
|
|
| ^^^^^^ second mutable borrow occurs here
|
|
LL | *y = 1;
|
|
| ------ first borrow later used here
|
|
|
|
error: captured variable cannot escape `FnMut` closure body
|
|
--> $DIR/borrowck-describe-lvalue.rs:262:16
|
|
|
|
|
LL | let mut x = 0;
|
|
| ----- variable defined here
|
|
LL | || {
|
|
| - inferred to be a `FnMut` closure
|
|
LL | / || {
|
|
LL | | let y = &mut x;
|
|
| | - variable captured here
|
|
LL | | &mut x;
|
|
LL | | *y = 1;
|
|
LL | | drop(y);
|
|
LL | | }
|
|
| |_________________^ returns a closure that contains a reference to a captured variable, which then escapes the closure body
|
|
|
|
|
= note: `FnMut` closures only have access to their captured variables while they are executing...
|
|
= note: ...therefore, they cannot allow references to captured variables to escape
|
|
help: consider adding 'move' keyword before the nested closure
|
|
|
|
|
LL | move || {
|
|
| ++++
|
|
|
|
error[E0503]: cannot use `f.x` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:37:9
|
|
|
|
|
LL | let x = f.x();
|
|
| - `f` is borrowed here
|
|
LL | f.x;
|
|
| ^^^ use of borrowed `f`
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `g.0` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:44:9
|
|
|
|
|
LL | let x = g.x();
|
|
| - `g` is borrowed here
|
|
LL | g.0;
|
|
| ^^^ use of borrowed `g`
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `h.0` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:51:9
|
|
|
|
|
LL | let x = &mut h.0;
|
|
| -------- `h.0` is borrowed here
|
|
LL | h.0;
|
|
| ^^^ use of borrowed `h.0`
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `e.0` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:59:20
|
|
|
|
|
LL | let x = e.x();
|
|
| - `e` is borrowed here
|
|
LL | match e {
|
|
LL | Baz::X(value) => value
|
|
| ^^^^^ use of borrowed `e`
|
|
LL | };
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `u.a` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:67:9
|
|
|
|
|
LL | let x = &mut u.a;
|
|
| -------- `u.a` is borrowed here
|
|
LL | u.a;
|
|
| ^^^ use of borrowed `u.a`
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `f.x` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:74:9
|
|
|
|
|
LL | let x = f.x();
|
|
| - `*f` is borrowed here
|
|
LL | f.x;
|
|
| ^^^ use of borrowed `*f`
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `g.0` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:81:9
|
|
|
|
|
LL | let x = g.x();
|
|
| - `*g` is borrowed here
|
|
LL | g.0;
|
|
| ^^^ use of borrowed `*g`
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `h.0` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:88:9
|
|
|
|
|
LL | let x = &mut h.0;
|
|
| -------- `h.0` is borrowed here
|
|
LL | h.0;
|
|
| ^^^ use of borrowed `h.0`
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `e.0` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:96:20
|
|
|
|
|
LL | let x = e.x();
|
|
| - `*e` is borrowed here
|
|
LL | match *e {
|
|
LL | Baz::X(value) => value
|
|
| ^^^^^ use of borrowed `*e`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `u.a` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:105:9
|
|
|
|
|
LL | let x = &mut u.a;
|
|
| -------- `u.a` is borrowed here
|
|
LL | u.a;
|
|
| ^^^ use of borrowed `u.a`
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[..]` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:113:15
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
LL | match v {
|
|
LL | &[x, _, .., _, _] => println!("{}", x),
|
|
| ^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[..]` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:118:18
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
...
|
|
LL | &[_, x, .., _, _] => println!("{}", x),
|
|
| ^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[..]` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:123:25
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
...
|
|
LL | &[_, _, .., x, _] => println!("{}", x),
|
|
| ^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[..]` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:128:28
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
...
|
|
LL | &[_, _, .., _, x] => println!("{}", x),
|
|
| ^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[..]` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:139:15
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
LL | match v {
|
|
LL | &[x @ ..] => println!("{:?}", x),
|
|
| ^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[..]` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:144:18
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
...
|
|
LL | &[_, x @ ..] => println!("{:?}", x),
|
|
| ^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[..]` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:149:15
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
...
|
|
LL | &[x @ .., _] => println!("{:?}", x),
|
|
| ^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[..]` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:154:18
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
...
|
|
LL | &[_, x @ .., _] => println!("{:?}", x),
|
|
| ^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `e` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:166:15
|
|
|
|
|
LL | let x = &mut e;
|
|
| ------ `e` is borrowed here
|
|
LL | match e {
|
|
| ^ use of borrowed `e`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0502]: cannot borrow `e.0` as immutable because it is also borrowed as mutable
|
|
--> $DIR/borrowck-describe-lvalue.rs:168:18
|
|
|
|
|
LL | let x = &mut e;
|
|
| ------ mutable borrow occurs here
|
|
...
|
|
LL | E::A(ref ax) =>
|
|
| ^^^^^^ immutable borrow occurs here
|
|
...
|
|
LL | drop(x);
|
|
| - mutable borrow later used here
|
|
|
|
error[E0502]: cannot borrow `e.x` as immutable because it is also borrowed as mutable
|
|
--> $DIR/borrowck-describe-lvalue.rs:171:23
|
|
|
|
|
LL | let x = &mut e;
|
|
| ------ mutable borrow occurs here
|
|
...
|
|
LL | E::B { x: ref bx } =>
|
|
| ^^^^^^ immutable borrow occurs here
|
|
...
|
|
LL | drop(x);
|
|
| - mutable borrow later used here
|
|
|
|
error[E0502]: cannot borrow `s.y.0` as immutable because it is also borrowed as mutable
|
|
--> $DIR/borrowck-describe-lvalue.rs:184:22
|
|
|
|
|
LL | let x = &mut s;
|
|
| ------ mutable borrow occurs here
|
|
LL | match s {
|
|
LL | S { y: (ref y0, _), .. } =>
|
|
| ^^^^^^ immutable borrow occurs here
|
|
...
|
|
LL | drop(x);
|
|
| - mutable borrow later used here
|
|
|
|
error[E0502]: cannot borrow `s.x.y` as immutable because it is also borrowed as mutable
|
|
--> $DIR/borrowck-describe-lvalue.rs:190:28
|
|
|
|
|
LL | let x = &mut s;
|
|
| ------ mutable borrow occurs here
|
|
...
|
|
LL | S { x: F { y: ref x0, .. }, .. } =>
|
|
| ^^^^^^ immutable borrow occurs here
|
|
...
|
|
LL | drop(x);
|
|
| - mutable borrow later used here
|
|
|
|
error[E0503]: cannot use `*v` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:232:9
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
LL | v[0].y;
|
|
| ^^^^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0503]: cannot use `v[_].y` because it was mutably borrowed
|
|
--> $DIR/borrowck-describe-lvalue.rs:232:9
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ `v` is borrowed here
|
|
LL | v[0].y;
|
|
| ^^^^^^ use of borrowed `v`
|
|
...
|
|
LL | drop(x);
|
|
| - borrow later used here
|
|
|
|
error[E0502]: cannot borrow `v[..].x` as immutable because it is also borrowed as mutable
|
|
--> $DIR/borrowck-describe-lvalue.rs:243:24
|
|
|
|
|
LL | let x = &mut v;
|
|
| ------ mutable borrow occurs here
|
|
LL | match v {
|
|
LL | &[_, F {x: ref xf, ..}] => println!("{}", xf),
|
|
| ^^^^^^ immutable borrow occurs here
|
|
...
|
|
LL | drop(x);
|
|
| - mutable borrow later used here
|
|
|
|
error[E0502]: cannot borrow `*block.current` as immutable because it is also borrowed as mutable
|
|
--> $DIR/borrowck-describe-lvalue.rs:206:29
|
|
|
|
|
LL | let x = &mut block;
|
|
| ---------- mutable borrow occurs here
|
|
LL | let p: &'a u8 = &*block.current;
|
|
| ^^^^^^^^^^^^^^^ immutable borrow occurs here
|
|
...
|
|
LL | drop(x);
|
|
| - mutable borrow later used here
|
|
|
|
error[E0502]: cannot borrow `*block.current` as immutable because it is also borrowed as mutable
|
|
--> $DIR/borrowck-describe-lvalue.rs:221:33
|
|
|
|
|
LL | let x = &mut block;
|
|
| ---------- mutable borrow occurs here
|
|
LL | let p : *const u8 = &*(*block).current;
|
|
| ^^^^^^^^^^^^^^^^^^ immutable borrow occurs here
|
|
...
|
|
LL | drop(x);
|
|
| - mutable borrow later used here
|
|
|
|
error[E0382]: use of moved value: `x`
|
|
--> $DIR/borrowck-describe-lvalue.rs:274:22
|
|
|
|
|
LL | drop(x);
|
|
| - value moved here
|
|
LL | drop(x);
|
|
| ^ value used here after move
|
|
|
|
|
= note: move occurs because `x` has type `Vec<i32>`, which does not implement the `Copy` trait
|
|
|
|
error: aborting due to 32 previous errors
|
|
|
|
Some errors have detailed explanations: E0382, E0499, E0502, E0503.
|
|
For more information about an error, try `rustc --explain E0382`.
|