rust/tests/ui/feature-gates/feature-gate-simd.rs
2024-09-09 19:39:43 -07:00

9 lines
140 B
Rust

//@ pretty-expanded FIXME #23616
#[repr(simd)] //~ ERROR SIMD types are experimental
struct RGBA {
rgba: [f32; 4],
}
pub fn main() {}