2017-12-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / simpleif_1.f90
blobee432ba90792f7c4ea66b75b77ebf942dddc15a1
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
7 if (.true.) forall (i = 1:4, j = 1:4) ia(i,j) = 1
8 if (any (ia.ne.1)) CALL abort()
10 index(:,:)=.false.
11 index(2,3) = .true.
13 if (.true.) where (index) ia = 2
14 if (ia(2,3).ne.2) call abort()
16 end