mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
20 lines
191 B
C
20 lines
191 B
C
|
|
static float g(void);
|
|
|
|
void c_f(void) {
|
|
float x, y;
|
|
|
|
x == 3.0;
|
|
3.0 == x;
|
|
x == x;
|
|
x == y;
|
|
|
|
g() == 3.0;
|
|
3.0 == g();
|
|
g() == g();
|
|
|
|
x == g();
|
|
g() == x;
|
|
}
|
|
|