blob: f0e9022888999b6731d3d4ee2acfa5a63643e186 [file] [log] [blame]
library fidl.test.bitsconstants;
bits BitsType : uint32 {
A = 0x00000001;
B = 0x80;
C = 0x2;
};
const BitsType Const1 = BitsType.A;
const BitsType Const2 = BitsType.A | BitsType.B;
const BitsType Const3 = BitsType.A | BitsType.B | BitsType.C;