0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-06 09:21:50 +00:00
quakeforge/tools/qfcc/test/double-demote-int.r
2020-02-15 23:49:12 +09:00

7 lines
86 B
R

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