Sign in
rust
/
rust-lang
/
rust
/
160e7623e8cbbf1feab2b6e2a24733a98c7bde9c
/
.
/
tests
/
ui
/
error-codes
/
E0077.rs
blob: 2704bbeb4ea171e398608b4780dcf52dbd914fe7 [
file
] [
log
] [
blame
]
#![
feature
(
repr_simd
)]
#[
repr
(
simd
)]
struct
Bad
([
String
;
2
]);
//~ ERROR E0077
fn
main
()
{
}