mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
These tests currently test a code path in the extractor that only exists for these tests. By turning them into integration tests, we actually use the code path that normal database creation uses.
16 lines
153 B
C
16 lines
153 B
C
#ifdef SEEN_H
|
|
static int h() {
|
|
return 30;
|
|
}
|
|
#endif
|
|
#ifdef H1
|
|
static int h1() {
|
|
return 31;
|
|
}
|
|
#endif
|
|
#ifdef H2
|
|
static int h2() {
|
|
return 32;
|
|
}
|
|
#endif
|