mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
14 lines
309 B
Rust
14 lines
309 B
Rust
// compile-flags: --emit=link -Zmir-opt-level=2 -Zpolymorphize=on
|
|
|
|
fn foo<T>() {
|
|
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
|
|
[[x]] => {}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
fn main() {}
|