Skip to content

Commit c372c55

Browse files
committed
Fix simd layout test
1 parent 87d5bf2 commit c372c55

File tree

1 file changed

+1
-1
lines changed
  • src/tools/rust-analyzer/crates/hir-ty/src/layout

1 file changed

+1
-1
lines changed

src/tools/rust-analyzer/crates/hir-ty/src/layout/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ fn simd_types() {
342342
check_size_and_align(
343343
r#"
344344
#[repr(simd)]
345-
struct SimdType(i64, i64);
345+
struct SimdType([i64; 2]);
346346
struct Goal(SimdType);
347347
"#,
348348
"",

0 commit comments

Comments
 (0)