mirror of
https://github.com/github/codeql.git
synced 2026-02-23 18:33:42 +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}
|
|
};
|