blob: 7255ca327e753328a56579e421fc06fe8f9cd0cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0384]: cannot assign to immutable argument `_x`
--> $DIR/immutable-arg.rs:2:5
|
LL | fn foo(_x: u32) {
| -- help: make this binding mutable: `mut _x`
LL | _x = 4;
| ^^^^^^ cannot assign to immutable argument
error: aborting due to previous error
For more information about this error, try `rustc --explain E0384`.
|