granite-rust/src/test/ui/borrowck/borrowck-mut-borrow-linear-errors.stderr

31 lines
1.3 KiB
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0499]: cannot borrow `x` as mutable more than once at a time
--> $DIR/borrowck-mut-borrow-linear-errors.rs:10:30
2018-08-08 14:28:26 +02:00
|
LL | 1 => { addr.push(&mut x); }
2018-08-08 14:28:26 +02:00
| ---- ^^^^^^ second mutable borrow occurs here
| |
| first borrow later used here
LL | 2 => { addr.push(&mut x); }
LL | _ => { addr.push(&mut x); }
2018-08-08 14:28:26 +02:00
| ------ first mutable borrow occurs here
error[E0499]: cannot borrow `x` as mutable more than once at a time
--> $DIR/borrowck-mut-borrow-linear-errors.rs:11:30
2018-08-08 14:28:26 +02:00
|
LL | 1 => { addr.push(&mut x); }
| ---- first borrow later used here
LL | 2 => { addr.push(&mut x); }
2018-08-08 14:28:26 +02:00
| ^^^^^^ second mutable borrow occurs here
LL | _ => { addr.push(&mut x); }
2018-08-08 14:28:26 +02:00
| ------ first mutable borrow occurs here
error[E0499]: cannot borrow `x` as mutable more than once at a time
--> $DIR/borrowck-mut-borrow-linear-errors.rs:12:30
2018-08-08 14:28:26 +02:00
|
LL | _ => { addr.push(&mut x); }
2018-08-08 14:28:26 +02:00
| ^^^^^^ mutable borrow starts here in previous iteration of loop
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0499`.