aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.fortran-torture/execute/where_15.f90
blob: ffbebb728aae2ab4cce19eb555f5cb3e01915ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! Check whether an empty WHERE works
program where_15
   integer :: a(5)
   integer :: b(5)

   a = (/1, 2, 3, 4, 5/)
   b = (/0, 0, 0, 0, 0/)
   where (a .eq. 1)
   elsewhere
     b = 2
   endwhere
   if (any (b .ne. (/0, 2, 2, 2, 2/))) &
     call abort
end program