mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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;
|
|
|
|
|
|
|