Files
codeql/cpp/ql/src/Likely Bugs/UseInOwnInitializer.cpp
2018-08-02 17:53:23 +01:00

11 lines
126 B
C++

int f() {
int x = x; // BAD: undefined behavior occurs here
x = 0;
return x;
}
int g() {
int x = 0; // GOOD
return x;
}