mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
258 B
Rust
11 lines
258 B
Rust
//@ compile-flags: --emit link
|
|
|
|
fn main() {
|
|
let a: [i32; 0] = [];
|
|
match [a[..]] {
|
|
//~^ ERROR cannot move a value of type `[i32]
|
|
//~| ERROR cannot move out of type `[i32]`, a non-copy slice
|
|
[[]] => (),
|
|
_ => (),
|
|
}
|
|
}
|