Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
error-codes
/
E0508-fail.rs
blob: 072c3d66183e33d38f8e119722510f3326ef3d25 [
file
]
struct
NonCopy
;
fn
main
()
{
let
array
=
[
NonCopy
;
1
];
let
_value
=
array
[
0
];
//~ ERROR [E0508]
}