mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
161 B
C
19 lines
161 B
C
|
|
struct foo {
|
|
int i;
|
|
};
|
|
|
|
void f(void) {
|
|
int l;
|
|
struct foo s;
|
|
|
|
l = s.i;
|
|
}
|
|
|
|
void myFunction()
|
|
{
|
|
struct MyLocalStruct {
|
|
int x, y, z;
|
|
};
|
|
}
|