]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-simd.rs
parser will not give wrong help message for 'public'
[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() {}