diff options
| author | Scott McMurray <scottmcm@users.noreply.github.com> | 2024-08-22 01:28:20 -0700 |
|---|---|---|
| committer | Scott McMurray <scottmcm@users.noreply.github.com> | 2024-09-09 19:39:43 -0700 |
| commit | d2309c2a9d308ddcd94c0ee8f4d2a01d1bd93560 (patch) | |
| tree | e3416e0a19bc48dafb5e725654722c460ddb4a52 /tests/rustdoc/inline_cross | |
| parent | 712463de61c65033a6f333f0a14fbb65e34efc50 (diff) | |
| download | rust-d2309c2a9d308ddcd94c0ee8f4d2a01d1bd93560.tar.gz rust-d2309c2a9d308ddcd94c0ee8f4d2a01d1bd93560.zip | |
Ban non-array SIMD
Diffstat (limited to 'tests/rustdoc/inline_cross')
| -rw-r--r-- | tests/rustdoc/inline_cross/auxiliary/repr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rustdoc/inline_cross/auxiliary/repr.rs b/tests/rustdoc/inline_cross/auxiliary/repr.rs index 35f08c11b7b..0211e1a8658 100644 --- a/tests/rustdoc/inline_cross/auxiliary/repr.rs +++ b/tests/rustdoc/inline_cross/auxiliary/repr.rs @@ -6,7 +6,7 @@ pub struct ReprC { } #[repr(simd, packed(2))] pub struct ReprSimd { - field: u8, + field: [u8; 1], } #[repr(transparent)] pub struct ReprTransparent { |
