2017-05-27 12:58:52 -05:00
|
|
|
error[E0596]: cannot borrow immutable local variable `x` as mutable
|
2016-07-13 16:53:42 -05:00
|
|
|
--> $DIR/huge_multispan_highlight.rs:100:18
|
|
|
|
|
|
2016-08-16 02:52:30 -05:00
|
|
|
12 | let x = "foo";
|
2017-03-26 11:35:46 -05:00
|
|
|
| - consider changing this to `mut x`
|
2016-07-13 16:53:42 -05:00
|
|
|
...
|
|
|
|
100 | let y = &mut x;
|
|
|
|
| ^ cannot borrow mutably
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2016-07-13 16:53:42 -05:00
|
|
|
|