Files
2018-08-02 17:53:23 +01:00

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;
}