OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / ltime_gmtime_1.f90
1 ! { dg-do run }
2 ! { dg-options "-std=gnu" }
3   integer :: x(9), y(9), t
4
5   t = time()
6   call ltime(t,x)
7   call gmtime(t,y)
8   if (x(1) /= y(1) .or. x(2) /= y(2)) call abort
9   end