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

13 lines
409 B
Plaintext
Raw Normal View History

2017-05-27 12:58:52 -05:00
error[E0596]: cannot borrow immutable local variable `x` as mutable
2018-02-22 18:42:32 -06:00
--> $DIR/huge_multispan_highlight.rs:100:18
|
LL | let x = "foo";
| - consider changing this to `mut x`
...
2018-02-22 18:42:32 -06:00
LL | let y = &mut x; //~ ERROR cannot borrow
| ^ cannot borrow mutably
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0596"