blob: f258e2f3c90e0b481850c579d21386c3c348225b [file] [log] [blame]
library fidl.test.json;
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;
};