Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.fortran-torture / execute / scalarize3.f90
blob76d41484c703b479f8e1f1a973d2289db6736bef
1 program foo
2 integer, dimension(3, 2) :: a
4 a = reshape ((/1, 2, 3, 4, 5, 6/), (/3, 2/))
5 a = a(3:1:-1, 2:1:-1);
7 if (any (a .ne. reshape ((/6, 5, 4, 3, 2, 1/), (/3, 2/)))) call abort
8 end program