mirror of
https://github.com/github/codeql.git
synced 2026-05-23 23:57:06 +02:00
10 lines
123 B
C++
10 lines
123 B
C++
void test(){
|
|
int a = 8;
|
|
int b = 9;
|
|
|
|
//Useless NonEquals
|
|
if(a==8 && a != 7) {}
|
|
|
|
while(a==8 && a!=7){}
|
|
}
|