mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
114 B
C++
8 lines
114 B
C++
struct foo_t { int x; float y; char z; };
|
|
|
|
static const foo_t glob[] = {
|
|
{1, 2, 3},
|
|
{3, 4, 5},
|
|
{5, 6, 7}
|
|
};
|