blob: 8bde6273faac5256d31996e5c9a3fbc63bbe7ad3 [file] [log] [blame]
enum MyEnum {
kOne = 0,
kTwo = 1 << 0,
kThree = 1 << 1,
kFour = 1 << 2
};