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