Fix simd layout test

This commit is contained in:
Laurențiu Nicola 2025-03-10 11:21:03 +02:00
parent bc178ff75e
commit 1afcab1725

View file

@ -342,7 +342,7 @@ fn simd_types() {
check_size_and_align( check_size_and_align(
r#" r#"
#[repr(simd)] #[repr(simd)]
struct SimdType(i64, i64); struct SimdType([i64; 2]);
struct Goal(SimdType); struct Goal(SimdType);
"#, "#,
"", "",