mirror of
https://github.com/github/codeql.git
synced 2026-05-05 13:45:19 +02: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
|