! { dg-do run }! PR 17074! Verifies that FORALL and WHERE after a simple if work.DIMENSIONia(4,4)logical,dimension(4,4) :: index
if(.true.)forall(i =1:4, j =1:4)ia(i,j) =1if(any(ia.ne.1))STOP1index(:,:)=.false.index(2,3) = .true.if(.true.)where(index) ia =2if(ia(2,3).ne.2)STOP2end