Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
error-codes
/
E0075.rs
blob: 2c610d9186b6416131c2467eccdebc7cb1d26814 [
file
]
#![
feature
(
repr_simd
)]
#[
repr
(
simd
)]
struct
Bad
;
//~ ERROR E0075
#[
repr
(
simd
)]
struct
AlsoBad
([
i32
;
1
],
[
i32
;
1
]);
//~ ERROR E0075
fn
main
()
{
}