Clang Project

clang_source_code/test/Modules/Inputs/non-ambiguous-enum/B.framework/Headers/b.h
1typedef long NSInteger;
2typedef enum __attribute__((flag_enum,enum_extensibility(open))) MyObjCEnum : NSInteger MyObjCEnum;
3
4enum MyObjCEnum : NSInteger {
5    MyEnumCst = 1,
6} __attribute__((availability(ios,introduced=11.0))) __attribute__((availability(tvos,unavailable))) ;
7