0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-12 04:12:13 +00:00
quakeforge/tools/qfcc/test/double-int-compare.r

8 lines
95 B
R
Raw Normal View History

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