blob: 74b1c43972e2192b3502476756e6f6e3628a3ecf [file] [log] [blame]
library test.arrays;
type StructSmallArray = struct {
a array<uint32, 2>;
};
type StructLargeArray = struct {
a array<uint32, 100>;
};
type TableSmallArray = table {
1: a array<uint32, 2>;
};
type TableLargeArray = table {
1: a array<uint32, 100>;
};
type UnionSmallArray = strict union {
1: a array<uint32, 2>;
};
type UnionLargeArray = strict union {
1: a array<uint32, 100>;
};