Files
codeql/cpp/ql/test/library-tests/locations/aggregate_literals/nested.cpp
2018-08-02 17:53:23 +01:00

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}
};