mirror of
https://github.com/github/codeql.git
synced 2026-01-01 00:27:24 +01:00
17 lines
120 B
C++
17 lines
120 B
C++
|
|
struct MyStruct
|
|
{
|
|
int x;
|
|
struct MySubStruct {
|
|
int z;
|
|
} y;
|
|
};
|
|
|
|
void test()
|
|
{
|
|
MyStruct s;
|
|
|
|
s.x = 1;
|
|
s.y.z = 1;
|
|
}
|