mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
16 lines
519 B
Plaintext
16 lines
519 B
Plaintext
error[E0502]: cannot borrow `y` as immutable because it is also borrowed as mutable
|
|
--> $DIR/dropck-resume.rs:25:13
|
|
|
|
|
LL | let z = &mut y;
|
|
| ------ mutable borrow occurs here
|
|
...
|
|
LL | r = y.as_ref().unwrap();
|
|
| ^ immutable borrow occurs here
|
|
LL |
|
|
LL | }
|
|
| - mutable borrow might be used here, when `g` is dropped and runs the destructor for coroutine
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0502`.
|