rust/src/test/ui/codemap_tests/huge_multispan_highlight.stderr

12 lines
337 B
Plaintext
Raw Normal View History

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