Files
codeql/cpp/ql/test/library-tests/structs/structs/structs.c
2019-08-06 15:52:25 +01:00

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