rust/src/test/ui/codemap_tests/huge_multispan_highlight.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

13 lines
381 B
Plaintext

error[E0596]: cannot borrow immutable local variable `x` as mutable
--> $DIR/huge_multispan_highlight.rs:90:18
|
LL | let x = "foo";
| - help: make this binding mutable: `mut x`
...
LL | let y = &mut x;
| ^ cannot borrow mutably
error: aborting due to previous error
For more information about this error, try `rustc --explain E0596`.