quakeforge/tools/qfcc/test/double-float-compare.r
Bill Currie 0542daacdf Create more double related tests
Including catching warnings :) (yay -Werror)
2020-02-15 23:49:12 +09:00

7 lines
97 B
R

double a;
float b;
int main ()
{
int x = a == b;
return 1; // test fails if compile succeeds
}