blob: a1f2d3473991ad122c80f556efb8da1dcbf627c6 [file]
module golden;
struct OptionalPrimitives {
int32? int;
int64? long;
array<uint32?> uints;
array<bool?> boolarray;
map<bool, bool?> bitmap;
int32? int_with_default = 1;
int64? long_with_default = 2;
bool? bool_with_default = true;
};