tcc-65816/test/tests/921019-2.c
2017-06-09 13:52:12 +02:00

9 lines
75 B
C

main()
{
double x,y=0.5;
x=y/0.2;
if(x!=x)
abort();
exit(0);
}