Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-simd.rs
blob: 9a27cb73f00725c4fc47fa99729e2b3e2be4ea2d [
file
] [
log
] [
blame
]
#[
repr
(
simd
)]
//~ ERROR SIMD types are experimental
struct
RGBA
{
rgba
:
[
f32
;
4
],
}
pub
fn
main
()
{}