1! Tests WHERE satement with non-integer array in the mask expression
2program where_5
3   integer, dimension(5) :: a
4   real(kind=8), dimension(5) :: b
5
6   a = (/1, 2, 3, 4, 5/)
7   b = (/1d0, 0d0, 1d0, 0d0, 1d0/)
8
9   where (b .ne. 0d0)
10      a(:) = a(:) + 10
11   endwhere
12   if (any (a .ne. (/11, 2, 13, 4, 15/))) STOP 1
13end program
14