about summary refs log tree commit diff
path: root/tests/ui/array-slice-vec/slice-mut-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/array-slice-vec/slice-mut-2.rs')
-rw-r--r--tests/ui/array-slice-vec/slice-mut-2.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/array-slice-vec/slice-mut-2.rs b/tests/ui/array-slice-vec/slice-mut-2.rs
new file mode 100644
index 00000000000..216edbb7808
--- /dev/null
+++ b/tests/ui/array-slice-vec/slice-mut-2.rs
@@ -0,0 +1,8 @@
+// Test mutability and slicing syntax.
+
+fn main() {
+    let x: &[isize] = &[1, 2, 3, 4, 5];
+    // Can't mutably slice an immutable slice
+    let slice: &mut [isize] = &mut [0, 1];
+    let _ = &mut x[2..4]; //~ERROR cannot borrow `*x` as mutable, as it is behind a `&` reference
+}