mirror of
https://github.com/github/codeql.git
synced 2026-03-28 18:28:17 +01:00
11 lines
126 B
C++
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;
|
|
}
|