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