mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
19 lines
744 B
Plaintext
19 lines
744 B
Plaintext
error[E0499]: cannot borrow `*x` as mutable more than once at a time
|
|
--> $DIR/issue-110929-generator-conflict-error-ice.rs:9:9
|
|
|
|
|
LL | let _c = || yield *&mut *x;
|
|
| -- -- first borrow occurs due to use of `*x` in generator
|
|
| |
|
|
| first mutable borrow occurs here
|
|
LL | || _ = &mut *x;
|
|
| ^^ -- second borrow occurs due to use of `*x` in closure
|
|
| |
|
|
| second mutable borrow occurs here
|
|
LL |
|
|
LL | };
|
|
| - first borrow might be used here, when `_c` is dropped and runs the destructor for generator
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0499`.
|