OSDN Git Service

2005-01-11 Paul Thomas <pault@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / simpleif_1.f90
1 ! { dg-do run }
2 ! PR 17074
3 ! Verifies that FORALL and WHERE after a simple if work.
4 DIMENSION ia(4,4)
5 logical,dimension(4,4) :: index
6
7 if (.true.) forall (i = 1:4, j = 1:4) ia(i,j) = 1
8 if (any (ia.ne.1)) CALL abort()
9
10 index(:,:)=.false.
11 index(2,3) = .true.
12
13 if (.true.) where (index) ia = 2
14 if (ia(2,3).ne.2) call abort()
15
16 end