mirror of
https://github.com/github/codeql.git
synced 2026-07-14 07:48:16 +02:00
13 lines
91 B
C
13 lines
91 B
C
|
|
struct foo {
|
|
int i;
|
|
};
|
|
|
|
void f(void) {
|
|
int l;
|
|
struct foo s;
|
|
|
|
l = s.i;
|
|
}
|
|
|