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