mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
1a94f1ccb7
This is a fatal error function, used for imported C enums. rdar://117520459
10 lines
115 B
C
10 lines
115 B
C
|
|
typedef enum : int {
|
|
A = 1,
|
|
B = 2,
|
|
C = 5,
|
|
} __attribute__((enum_extensibility(closed))) c_closed_enum_t;
|
|
|
|
|
|
|