blob: 4fac987b0b5aa1deb331bf92ed46e98053269825 [file] [log] [blame]
//@ build-fail
#![feature(repr_simd)]
#[repr(simd)]
struct Simd<T, const N: usize>([T; N]);
fn main() {
let _too_big = Simd([1_u16; 54321]);
}
//~? ERROR monomorphising SIMD type `Simd<u16, 54321>` of length greater than 32768