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

10 lines
106 B
R

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