Skip to content

Commit 7b7b4a4

Browse files
committed
Fix incorrect type representation in test.
1 parent 1d5a32f commit 7b7b4a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ui/feature-gates/feature-gate-repr-scalable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#[repr(simd, scalable(16))] //~ error: Scalable SIMD types are experimental
44
struct Foo {
5-
_ty: [i8; 0],
5+
_ty: [i8],
66
}
77

88
fn main() {}

0 commit comments

Comments
 (0)