mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
285 B
Rust
12 lines
285 B
Rust
fn main() {
|
|
let mut a = [1, 2, 3, 4];
|
|
let t = match a {
|
|
[1, 2, ref tail @ ..] => tail,
|
|
_ => unreachable!()
|
|
};
|
|
println!("t[0]: {}", t[0]);
|
|
a[2] = 0; //~ ERROR cannot assign to `a[_]` because it is borrowed
|
|
println!("t[0]: {}", t[0]);
|
|
t[0];
|
|
}
|