mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02: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;
|
|
};
|
|
}
|