#![feature(repr_simd)]
#[repr(simd)]
struct Bad; //~ ERROR E0075
struct AlsoBad([i32; 1], [i32; 1]); //~ ERROR E0075
fn main() {
}