mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
15 lines
131 B
C++
15 lines
131 B
C++
|
|
int main()
|
|
{
|
|
int x;
|
|
|
|
if (x == 1) {}
|
|
if (x != 1) {}
|
|
if (x < 1) {}
|
|
if (x > 1) {}
|
|
if (x <= 1) {}
|
|
if (x >= 1) {}
|
|
|
|
return 0;
|
|
}
|