]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-simd.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / test / ui / feature-gates / feature-gate-simd.rs
1 // pretty-expanded FIXME #23616
2
3 #[repr(simd)] //~ ERROR SIMD types are experimental
4 struct RGBA {
5     r: f32,
6     g: f32,
7     b: f32,
8     a: f32
9 }
10
11 pub fn main() {}