mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
15 lines
170 B
C
15 lines
170 B
C
|
|
typedef struct foo {
|
|
int x;
|
|
} foo;
|
|
|
|
foo foomaker();
|
|
|
|
void test() {
|
|
foo bar[] = {
|
|
foomaker()
|
|
};
|
|
}
|
|
|
|
// semmle-extractor-options: --microsoft --microsoft_version 1800
|