blob: 7bb69caa1024af4c060687c83e5bc9ba41a59a5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error: cannot borrow immutable local variable `x` as mutable
--> $DIR/huge_multispan_highlight.rs:100:18
|
12 | let x = "foo";
| - consider changing this to `mut x`
...
100 | let y = &mut x;
| ^ cannot borrow mutably
error: aborting due to previous error
|