rust/src/test/ui/immut-function-arguments.ast.nll.stderr

20 lines
756 B
Plaintext
Raw Normal View History

error[E0594]: cannot assign to `*y`, as `y` is not declared as mutable
2018-12-25 09:56:47 -06:00
--> $DIR/immut-function-arguments.rs:5:5
2018-08-08 07:28:26 -05:00
|
LL | fn f(y: Box<isize>) {
| - help: consider changing this to be mutable: `mut y`
2018-08-08 07:28:26 -05:00
LL | *y = 5; //[ast]~ ERROR cannot assign
| ^^^^^^ cannot assign
2018-08-08 07:28:26 -05:00
error[E0594]: cannot assign to `*q`, as `q` is not declared as mutable
2018-12-25 09:56:47 -06:00
--> $DIR/immut-function-arguments.rs:10:35
2018-08-08 07:28:26 -05:00
|
LL | let _frob = |q: Box<isize>| { *q = 2; }; //[ast]~ ERROR cannot assign
| - ^^^^^^ cannot assign
2018-08-08 07:28:26 -05:00
| |
| help: consider changing this to be mutable: `mut q`
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0594`.