Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gfortran.fortran-torture / execute / where_13.f90
blobce8d5822ef4f94cfb3d0da356e2e267775152a97
1 ! Check empty WHERE and empty ELSEWHERE works
2 program where_13
3 integer :: a(5)
5 a = (/1, 2, 3, 4, 5/)
6 where (a .eq. 2)
7 elsewhere
8 endwhere
9 end program