]> git.lizzy.rs Git - rust.git/blob - src/test/ui/simd-type.rs
Auto merge of #60072 - RalfJung:linked-list, r=shepmaster
[rust.git] / src / test / ui / simd-type.rs
1 #![feature(repr_simd)]
2 #![allow(non_camel_case_types)]
3
4 #[repr(simd)]
5 struct empty; //~ ERROR SIMD vector cannot be empty
6
7 #[repr(simd)]
8 struct i64f64(i64, f64); //~ ERROR SIMD vector should be homogeneous
9
10 fn main() {}