summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/immutable-arg.stderr
blob: 84a480f6410711d62f2f5a97858df36afcb9d5fb (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 1 previous error

For more information about this error, try `rustc --explain E0384`.