rust/src/test/ui/slice-mut-2.stderr
2018-12-25 21:08:33 -07:00

10 lines
361 B
Plaintext

error[E0596]: cannot borrow immutable borrowed content `*x` as mutable
--> $DIR/slice-mut-2.rs:7:18
|
LL | let _ = &mut x[2..4]; //~ERROR cannot borrow immutable borrowed content `*x` as mutable
| ^ cannot borrow as mutable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0596`.