mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
isDependentConformance() should always check for synthesized conformances, so do that further up the function. Also add a test. rdar://97290618
13 lines
265 B
C
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_ */
|