phiopt: Fix VCE moving by rewriting it into cast [PR116098]
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / random_init.f90
blobe7a3b8e2eb4ca290ec49fb55c182075df2a46be5
1 ! pr 15149
2 ! verify the random number generator is functional
3 program test_random
4 implicit none
5 real :: r(5) = 0.0
7 call random_number(r)
8 if (all (r .eq. 0)) STOP 1
9 end program