//@ build-fail #![feature(repr_simd)] #[repr(simd)] struct Simd([T; N]); fn main() { let _too_big = Simd([1_u16; 54321]); } //~? ERROR monomorphising SIMD type `Simd` of length greater than 32768