rust/tests/ui/coroutine/issue-110929-coroutine-conflict-error-ice.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
744 B
Plaintext
Raw Normal View History

error[E0499]: cannot borrow `*x` as mutable more than once at a time
--> $DIR/issue-110929-coroutine-conflict-error-ice.rs:8:9
|
LL | let _c = || yield *&mut *x;
2023-10-19 21:46:28 +00:00
| -- -- first borrow occurs due to use of `*x` in coroutine
| |
| 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 | };
2023-10-19 21:46:28 +00:00
| - first borrow might be used here, when `_c` is dropped and runs the destructor for coroutine
2023-04-28 16:50:28 +00:00
error: aborting due to previous error
2023-04-28 16:50:28 +00:00
For more information about this error, try `rustc --explain E0499`.