1program foo
2  integer, dimension(3, 2) :: a
3
4  a = reshape ((/1, 2, 3, 4, 5, 6/), (/3, 2/))
5  a = a(3:1:-1, 2:1:-1);
6
7  if (any (a .ne. reshape ((/6, 5, 4, 3, 2, 1/), (/3, 2/)))) STOP 1
8end program
9