summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/immutable-arg.stderr
blob: bddb0633a0b86ea716b8e244b9d11b0fc46b86f4 (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: consider making 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`.