mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
9 lines
140 B
Rust
9 lines
140 B
Rust
//@ pretty-expanded FIXME #23616
|
|
|
|
#[repr(simd)] //~ ERROR SIMD types are experimental
|
|
struct RGBA {
|
|
rgba: [f32; 4],
|
|
}
|
|
|
|
pub fn main() {}
|