rust/tests/ui/simd/monomorphize-too-long.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
242 B
Rust
Raw Normal View History

2024-08-22 03:28:20 -05:00
//@ build-fail
//@ error-pattern: monomorphising SIMD type `Simd<u16, 54321>` of length greater than 32768
#![feature(repr_simd)]
#[repr(simd)]
struct Simd<T, const N: usize>([T; N]);
fn main() {
let _too_big = Simd([1_u16; 54321]);
}