blob: 68818f50cd27393e50b639cd8356a033d5472d94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0596]: cannot borrow immutable local variable `x` as mutable
--> $DIR/huge_multispan_highlight.rs:100:18
|
LL | let x = "foo";
| - consider changing this to `mut x`
...
LL | let y = &mut x; //~ ERROR cannot borrow
| ^ cannot borrow mutably
error: aborting due to previous error
For more information about this error, try `rustc --explain E0596`.
|