modula2: Simplify REAL/LONGREAL/SHORTREAL node creation.
[official-gcc.git] / gcc / testsuite / gfortran.dg / simpleif_1.f90
blobc26bbd26283eff72e7cefa9590d43a372d99ff49
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)) STOP 1
10 index(:,:)=.false.
11 index(2,3) = .true.
13 if (.true.) where (index) ia = 2
14 if (ia(2,3).ne.2) STOP 2
16 end