]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-simd.rs
Rollup merge of #107306 - compiler-errors:correct-sugg-for-closure-arg-needs-borrow...
[rust.git] / tests / 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() {}