Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / transfer1.f90
blob9779f6b8c67f7f6cb8effb3a19cb0261441b753f
1 program chop
2 integer ix, iy
3 real x, y
4 x = 1.
5 y = x
6 ix = transfer(x,ix)
7 iy = transfer(y,iy)
8 print '(2z20.8)', ix, iy
9 if (ix /= iy) STOP 1
10 end program chop