mirror of
https://github.com/github/codeql.git
synced 2026-08-03 08:52:55 +02:00
14 lines
130 B
C++
14 lines
130 B
C++
int g() {
|
|
return 1;
|
|
}
|
|
|
|
int h() {
|
|
return 1;
|
|
}
|
|
|
|
void f() {
|
|
static int i = g(), j = h();
|
|
static int k = g();
|
|
;
|
|
}
|