rust/tests/ui/generator/issue-110929-generator-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
2023-06-24 05:02:54 -05:00
--> $DIR/issue-110929-generator-conflict-error-ice.rs:8: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
2023-04-28 11:50:28 -05:00
error: aborting due to previous error
2023-04-28 11:50:28 -05:00
For more information about this error, try `rustc --explain E0499`.