mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
7 lines
107 B
Rust
7 lines
107 B
Rust
struct NonCopy;
|
|
|
|
fn main() {
|
|
let array = [NonCopy; 1];
|
|
let _value = array[0]; //~ ERROR [E0508]
|
|
}
|