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

8 lines
86 B
R
Raw Normal View History

2020-02-15 08:00:14 +00:00
double a;
int b;
int main ()
{
b = a;
return 1; // test fails if compile succeeds
}