aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/non-ambiguous-enum/B.framework/Headers/b.h
blob: def44e3a6340d2109d7179d3afc21bdae72cefd7 (plain) (blame)
1
2
3
4
5
6
typedef long NSInteger;
typedef enum __attribute__((flag_enum,enum_extensibility(open))) MyObjCEnum : NSInteger MyObjCEnum;

enum MyObjCEnum : NSInteger {
    MyEnumCst = 1,
} __attribute__((availability(ios,introduced=11.0))) __attribute__((availability(tvos,unavailable))) ;