blob: 6a898a434778e2af416723401227d83f02bc805e (
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
|
14 | let x = "foo";
| - use `mut x` here to make mutable
...
100 | let y = &mut x;
| ^ cannot borrow mutably
error: aborting due to previous error
|