blob: e7b9bfe32f8df43f8247f96c954826f4ab5665fb [file] [log] [blame]
// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
#![feature(repr_simd)]
#[repr(simd)]
struct RGBA {
r: f32,
g: f32,
b: f32,
a: f32
}
pub fn main() {}