blob: 5ef5127a57f4d15487c40bbfef4f6b41701ecd17 [file] [log] [blame]
library fidl.test.json;
bits MyBits : uint32 {
MY_FIRST_BIT = 1;
MY_OTHER_BIT = 2;
};
flexible bits FlexibleBits : uint64 {
SMALLEST = 1;
BIGGEST = 0x8000000000000000;
};
bits StrictBits : uint64 {
SMALLEST = 1;
BIGGEST = 0x8000000000000000;
};