2020-05-22 00:00:00 +00:00
|
|
|
warning: unused variable: `x`
|
2020-07-28 00:00:00 +00:00
|
|
|
--> $DIR/unboxed-closures-move-mutable.rs:17:17
|
2020-05-22 00:00:00 +00:00
|
|
|
|
|
|
|
|
LL | move || x += 1;
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: did you mean to capture by reference instead?
|
2022-09-18 19:55:36 +04:00
|
|
|
= note: `#[warn(unused_variables)]` on by default
|
2020-05-22 00:00:00 +00:00
|
|
|
|
|
|
|
warning: unused variable: `x`
|
2020-07-28 00:00:00 +00:00
|
|
|
--> $DIR/unboxed-closures-move-mutable.rs:21:17
|
2020-05-22 00:00:00 +00:00
|
|
|
|
|
|
|
|
LL | move || x += 1;
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: did you mean to capture by reference instead?
|
|
|
|
|
|
|
|
warning: 2 warnings emitted
|
|
|
|
|