2019-05-02 18:34:15 -04:00
|
|
|
error[E0384]: cannot assign to immutable argument `_x`
|
|
|
|
--> $DIR/immutable-arg.rs:2:5
|
2018-01-07 17:02:26 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn foo(_x: u32) {
|
2021-04-12 23:29:09 +01:00
|
|
|
| -- help: consider making this binding mutable: `mut _x`
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | _x = 4;
|
2018-01-07 17:02:26 -08:00
|
|
|
| ^^^^^^ cannot assign to immutable argument
|
|
|
|
|
2019-05-02 18:34:15 -04:00
|
|
|
error: aborting due to previous error
|
2018-01-07 17:02:26 -08:00
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0384`.
|