]> git.lizzy.rs Git - rust.git/blob - src/test/ui/slice-mut-2.rs
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / slice-mut-2.rs
1 // Test mutability and slicing syntax.
2
3 fn main() {
4     let x: &[isize] = &[1, 2, 3, 4, 5];
5     // Can't mutably slice an immutable slice
6     let slice: &mut [isize] = &mut [0, 1];
7     let _ = &mut x[2..4]; //~ERROR cannot borrow immutable borrowed content `*x` as mutable
8 }