summary refs log tree commit diff
path: root/src/test/ui/slice-mut-2.stderr
blob: 4483c6f1a8a2ecc7cee20bf97bd4eea43ce766e7 (plain)
1
2
3
4
5
6
7
8
9
error[E0596]: cannot borrow immutable borrowed content `*x` as mutable
  --> $DIR/slice-mut-2.rs:17: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`.