2019-04-22 08:40:08 +01:00
|
|
|
error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
|
|
|
|
--> $DIR/issue-37139.rs:12:18
|
2016-11-01 23:15:02 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | test(&mut x);
|
2019-04-22 08:40:08 +01:00
|
|
|
| ^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot borrow as mutable
|
2021-07-25 10:23:48 -04:00
|
|
|
| help: try removing `&mut` here
|
2016-11-01 23:15:02 -07:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to previous error
|
2016-11-01 23:15:02 -07:00
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0596`.
|