quakeforge/tools/qfcc/test/double-int-compare.r

10 lines
115 B
R

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