mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
13 lines
146 B
C
13 lines
146 B
C
|
|
enum MyCEnum {
|
|
MyCVal = 5,
|
|
MyNextVal = 6
|
|
};
|
|
|
|
struct MyCStruct {
|
|
int es[2];
|
|
};
|
|
|
|
static const struct MyCStruct s = {{ MyCVal, MyNextVal }};
|
|
|