rustc/tests/ui/feature-gates/feature-gate-simd.rs
2025-02-17 11:14:05 +01:00

7 lines
106 B
Rust

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