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