diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2025-03-10 11:21:03 +0200 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2025-03-10 11:21:03 +0200 |
| commit | c372c55f2b9fa1997619f7569e3a88b9d8a92024 (patch) | |
| tree | 9d14572db41d2d8431fcc63209a2ff7ad92d422c | |
| parent | 87d5bf2b9287287f59f015558e090fbe35d5292b (diff) | |
| download | rust-c372c55f2b9fa1997619f7569e3a88b9d8a92024.tar.gz rust-c372c55f2b9fa1997619f7569e3a88b9d8a92024.zip | |
Fix simd layout test
| -rw-r--r-- | src/tools/rust-analyzer/crates/hir-ty/src/layout/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/hir-ty/src/layout/tests.rs b/src/tools/rust-analyzer/crates/hir-ty/src/layout/tests.rs index 4d3896660b4..8b74b7328bd 100644 --- a/src/tools/rust-analyzer/crates/hir-ty/src/layout/tests.rs +++ b/src/tools/rust-analyzer/crates/hir-ty/src/layout/tests.rs @@ -342,7 +342,7 @@ fn simd_types() { check_size_and_align( r#" #[repr(simd)] - struct SimdType(i64, i64); + struct SimdType([i64; 2]); struct Goal(SimdType); "#, "", |
