mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
656db98bd9
CC #99430
16 lines
612 B
Plaintext
16 lines
612 B
Plaintext
error[E0506]: cannot assign to `*x` because it is borrowed
|
|
--> $DIR/issue-75785-confusing-named-region.rs:9:5
|
|
|
|
|
LL | pub async fn async_fn(x: &mut i32) -> (&i32, &i32) {
|
|
| - let's call the lifetime of this reference `'1`
|
|
LL | let y = &*x;
|
|
| --- `*x` is borrowed here
|
|
LL | *x += 1;
|
|
| ^^^^^^^ `*x` is assigned to here but it was already borrowed
|
|
LL | (&32, y)
|
|
| -------- returning this value requires that `*x` is borrowed for `'1`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0506`.
|