mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
166 B
Rust
12 lines
166 B
Rust
// pretty-expanded FIXME #23616
|
|
|
|
#[repr(simd)] //~ ERROR SIMD types are experimental
|
|
struct RGBA {
|
|
r: f32,
|
|
g: f32,
|
|
b: f32,
|
|
a: f32
|
|
}
|
|
|
|
pub fn main() {}
|