]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-simd.rs
Rollup merge of #92959 - asquared31415:test-non-fn-help, r=estebank
[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() {}