Files
codeql/cpp/ql/test/successor-tests/staticlocals/staticlocals/staticlocals.cpp
2018-09-23 16:23:52 -07:00

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