blob: d23db7a3bf40768cb254af871894125a26108e27 [file] [log] [blame]
library test.stringarrays;
type StructSmallArray = struct {
a string_array<2>;
};
type StructLargeArray = struct {
a string_array<100>;
};
type TableSmallArray = table {
1: a string_array<2>;
};
type TableLargeArray = table {
1: a string_array<100>;
};
type UnionSmallArray = strict union {
1: a string_array<2>;
};
type UnionLargeArray = strict union {
1: a string_array<100>;
};