aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/where_5.f90
blob: 58d24ecbb305aeea9aef91fff84ee481fa369fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! Tests WHERE satement with non-integer array in the mask expression
program where_5
   integer, dimension(5) :: a
   real(kind=8), dimension(5) :: b

   a = (/1, 2, 3, 4, 5/)
   b = (/1d0, 0d0, 1d0, 0d0, 1d0/)
   
   where (b .ne. 0d0)
      a(:) = a(:) + 10
   endwhere
   if (any (a .ne. (/11, 2, 13, 4, 15/))) call abort
end program