Files
swift-mirror/test/IRGen/Inputs/synthesized_protocol.h
Alastair Houghton 62f54019af [IRGen] Rearrange fix slightly and add a test case.
isDependentConformance() should always check for synthesized conformances,
so do that further up the function.

Also add a test.

rdar://97290618
2022-08-23 09:50:06 +01:00

13 lines
265 B
C

#ifndef SYNTHESIZED_PROTOCOL_H_
#define SYNTHESIZED_PROTOCOL_H_
typedef enum __attribute__((flag_enum,enum_extensibility(open))) {
One = 0x0001,
Two = 0x0002,
Four = 0x0004,
Eight = 0x0008,
Sixteen = 0x0010
} Flags;
#endif /* SYNTHESIZED_PROTOCOL_H_ */