rust/tests/ui/borrowck/issue-58776-borrowck-scans-children.stderr

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

18 lines
669 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `greeting` because it is borrowed
--> $DIR/issue-58776-borrowck-scans-children.rs:5:5
|
LL | let res = (|| (|| &greeting)())();
| -- -------- borrow occurs due to use in closure
| |
2023-01-14 21:06:44 -06:00
| `greeting` is borrowed here
2022-06-08 13:07:59 -05:00
LL |
LL | greeting = "DEALLOCATED".to_string();
2023-01-14 21:06:44 -06:00
| ^^^^^^^^ `greeting` is assigned to here but it was already borrowed
...
LL | println!("thread result: {:?}", res);
| --- borrow later used here
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0506`.