diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2024-03-13 05:26:03 +0000 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2024-04-11 16:41:41 +0000 |
| commit | 065454dd1da7a759cd414468992b2afdfcf477b3 (patch) | |
| tree | 326cb28f0bbe5d1bf43646d18174f375b0eee686 /tests/codegen/patchable-function-entry/patchable-function-entry-both-flags.rs | |
| parent | 10c2fbec2437a873463382726d4815520430ff1f (diff) | |
| download | rust-065454dd1da7a759cd414468992b2afdfcf477b3.tar.gz rust-065454dd1da7a759cd414468992b2afdfcf477b3.zip | |
More move error suggestions to clone
```
error[E0507]: cannot move out of `val`, a captured variable in an `FnMut` closure
--> $DIR/issue-87456-point-to-closure.rs:10:28
|
LL | let val = String::new();
| --- captured outer variable
LL |
LL | take_mut(|| {
| -- captured by this `FnMut` closure
LL |
LL | let _foo: String = val;
| ^^^ move occurs because `val` has type `String`, which does not implement the `Copy` trait
|
help: consider borrowing here
|
LL | let _foo: String = &val;
| +
help: consider cloning the value if the performance cost is acceptable
|
LL | let _foo: String = val.clone();
| ++++++++
```
Diffstat (limited to 'tests/codegen/patchable-function-entry/patchable-function-entry-both-flags.rs')
0 files changed, 0 insertions, 0 deletions
