blob: 92cee2900ff77f2323b2a9a0a3af7b3d4a60beda [file] [log] [blame]
library fidl.test.arrays;
struct StructSmallArray {
array<uint32>:2 a;
};
struct StructLargeArray {
array<uint32>:100 a;
};
table TableSmallArray {
1: array<uint32>:2 a;
};
table TableLargeArray {
1: array<uint32>:100 a;
};
union UnionSmallArray {
1: array<uint32>:2 a;
};
union UnionLargeArray {
1: array<uint32>:100 a;
};